Forum Discussion
DISTINCT TABLE USING DAX MEASURES
Hi,
If you only have 1 Table, you do not need to create a seperate receipts table. In a Table visual, i simply dragged the Receipt_No field. I then wrote these two measures
Date = MIN(Data[BPIS_VALUE_DATE])
BPIS Number = FIRSTNONBLANK(Data[BPIS_NO],1)
Hope this helps.
In this case i have two table
One table contains the collection data. This also contains duplicate receipt no.
Loan account no | receipt no | receipt date.
Another table contains the receipt dump. Which i have shared in my earlier problem..
Purpose I have to create a relationship between the collection data and receipt dump/distinct receipt dump to find the difference between collection date and BPIS date.
If i create table visual, I am not able to create any relationship between table visual data and the collection data.