Yeah I suppose it's easier when there is a visual
So I have a spreadsheet that has 4 tabs. STATION1 thru STATION4. This first column in each tab is the rowId , just incremental row counter.
data on STATION1 would look like this:
1,,business,first,last,email,,,,,
STATION2(Column2 is a reference to Column1 in STATION1):
1,1,,,123,Main,St,City,State,Zip
STATION3 (Column2 references Column1 in STATION2):
1,1,1,P-550,11223344
2,1,2,P-330,22334455
I am inserting data into two hashes like so:
$excel{$tab}{$row}{$col} = $cell->{Val};
$rehash{$tab}{$id}{$row} = $excel{$tab}{$row}{$col};
This attempt is finding no results:
for my $s2_key (keys %{$rehash{"1"}}) {
if ( exists( $rehash{"1"}{$s2_key} )) {
print SOMETHING;
}
Update: Durrr! That's what I get for operating on no sleep. Put "1" instead of "STATION2". I will continue to fiddle.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.