ruchperformive
New Member
- Joined
- Mar 2, 2021
- Messages
- 7
- Office Version
- 365
- 2016
- Platform
- Windows
Hello,
I'm trying to populate all the unique (i.e billing cycle) related to my invoices
Given
Desired Result
How can I check all unique value related to invoice from 2 separate sheet
Currently I'm using
=IFERROR(INDEX("Sheet 1 Billing Cycle", MATCH(0, IF("Invoice"="Sheet 1 Invocies", COUNTIF("Invoice", "Sheet 1 Invoices), ""), 0)),"")
But this is only working for Column and wont give me output in ROW and also wont consider another sheet 2 data.
I'm trying to populate all the unique (i.e billing cycle) related to my invoices
Given
Invoice id | Value | billingcycle | date_sent_month_year | date_paid_month_year | due_date_month_year |
1 | 10 | One Time | 4/30/2021 | 4/30/2021 | 4/30/2021 |
1 | 20 | One Time | 4/30/2021 | 4/30/2021 | 4/30/2021 |
1 | 10 | Monthly | 4/30/2021 | 00-00-0000 | 5/14/2021 |
Desired Result
Invoice | Amount | Due_Date | Billing_Cycle | |
1 | 40 | 4/30/2021 | Monthly | one time |
2 | 2 | 9/15/2019 | Monthly | Annually |
3 | 10 | 9/16/2019 | Monthly | |
4 | 4 | 9/16/2019 | Monthly | 2 Year |
How can I check all unique value related to invoice from 2 separate sheet
Currently I'm using
=IFERROR(INDEX("Sheet 1 Billing Cycle", MATCH(0, IF("Invoice"="Sheet 1 Invocies", COUNTIF("Invoice", "Sheet 1 Invoices), ""), 0)),"")
But this is only working for Column and wont give me output in ROW and also wont consider another sheet 2 data.