Hi Guys,
My question is about the formula in Excel.
When I ran my workflow it will output the data in excel.
My problem is I don't know how to vlookup using 2 values.
I have 2 sheets,
The fund name sheet and data sheet.
Fund name sheet is something like this.
| Fund Name | Date | Amount 1 | Amount 2 | Amount 3 | Amount4 |
| Sample Fund Name 1 | 9/1/2020 | | | | |
| Sample Fund Name 1 | 9/2/2020 | | | | |
| Sample Fund Name 1 | 9/3/2020 | | | | |
| Sample Fund Name 1 | 9/4/2020 | | | | |
| Sample Fund Name 1 | 9/5/2020 | | | | |
And my data sheet is something like this.
| Fund Name | Date | Amount 1 | Amount 2 | Amount 3 | Amount4 |
| Sample Fund Name 1 | 9/1/2020 | 11,223 | 23,443 | 23,555 | 12,231 |
| Sample Fund Name 2 | 9/1/2020 | 12,223 | 235,243 | 425,523 | 23,344 |
| Sample Fund Name 3 | 9/1/2020 | 13,223 | 447,043 | 827,491 | 34,457 |
| Sample Fund Name 4 | 9/1/2020 | 14,223 | 658,843 | 1,229,459 | 45,570 |
| Sample Fund Name 5 | 9/1/2020 | 15,223 | 870,643 | 1,631,427 | 56,683 |
| Sample Fund Name 1 | 9/2/2020 | 132,223 | 4,417,043 | 8,274,491 | 344,557 |
I need to lookup the data from Data Sheet to Fund Name using Fund Name column and Date column.
I want something like this,
| Fund Name | Date | Amount 1 | Amount 2 | Amount 3 | Amount4 |
| Sample Fund Name 1 | 9/1/2020 | 11,223 | 23,443 | 23,555 | 12,231 |
| Sample Fund Name 1 | 9/2/2020 | 132,223 | 4,417,043 | 8,274,491 | 344,557 |
| Sample Fund Name 1 | 9/3/2020 | | | | |
| Sample Fund Name 1 | 9/4/2020 | | | | |
| Sample Fund Name 1 | 9/5/2020 | | | | |
Thank you!