Hi, is it possible two have two keys for each value?
Here's the problem I'm facing with. I have some balance sheets for different people with different dates in different worksheets and files. I want to extract certain data such as the numbers of equity or debt from balance sheet, and rearrange them into a time-series data in a new worksheet.
I googled some similar tasks and found the dictionary might help me with it. But I checked some dictionary sample code and found most of them are "a key for a value" patterns, which seems not applying to my problem. So I wander whether it's possible to have two keys for each value. Like, key1=date, key2=person name, and value=debt or equity.
So when I rearrange the data, I could list them like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]person A[/TD]
[TD]person B[/TD]
[TD]person C[/TD]
[/TR]
[TR]
[TD]date1[/TD]
[TD]equity1[/TD]
[TD]equity2[/TD]
[TD]equity3[/TD]
[/TR]
[TR]
[TD]date2[/TD]
[TD]equity4[/TD]
[TD]equity5[/TD]
[TD]equity6[/TD]
[/TR]
[TR]
[TD]date3[/TD]
[TD]equity7[/TD]
[TD]equity8[/TD]
[TD]equity9[/TD]
[/TR]
</tbody>[/TABLE]
If not, would you mind giving me a hint about how to deal with it? I'd really appreciate it. I just learnt vba for less than two months by myself. So sometimes I kinda fell that I'm lost and don't know where to go.
Here's the problem I'm facing with. I have some balance sheets for different people with different dates in different worksheets and files. I want to extract certain data such as the numbers of equity or debt from balance sheet, and rearrange them into a time-series data in a new worksheet.
I googled some similar tasks and found the dictionary might help me with it. But I checked some dictionary sample code and found most of them are "a key for a value" patterns, which seems not applying to my problem. So I wander whether it's possible to have two keys for each value. Like, key1=date, key2=person name, and value=debt or equity.
So when I rearrange the data, I could list them like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]person A[/TD]
[TD]person B[/TD]
[TD]person C[/TD]
[/TR]
[TR]
[TD]date1[/TD]
[TD]equity1[/TD]
[TD]equity2[/TD]
[TD]equity3[/TD]
[/TR]
[TR]
[TD]date2[/TD]
[TD]equity4[/TD]
[TD]equity5[/TD]
[TD]equity6[/TD]
[/TR]
[TR]
[TD]date3[/TD]
[TD]equity7[/TD]
[TD]equity8[/TD]
[TD]equity9[/TD]
[/TR]
</tbody>[/TABLE]
If not, would you mind giving me a hint about how to deal with it? I'd really appreciate it. I just learnt vba for less than two months by myself. So sometimes I kinda fell that I'm lost and don't know where to go.