Forum Discussion
samihuq
8 years agoHelper III
Find Transaction Number
Hi, I hav a Transaction Table with bellow structure: Date Customer Payment_Amount Payment_Count 1-Jan-17 Sami 10 1 1-Jan-17 Bayezid 10 1 1-Jan-17 Surkhru 10 1 2-Jan-17 Sami 10 2 2-Jan-17 S...
- 8 years ago
Hi samihuq
Try this Column
= RANKX ( FILTER ( Table1, Table1[Customer] = EARLIER ( Table1[Customer] ) ), CALCULATE ( VALUES ( Table1[Date] ) ), , ASC, DENSE )
afzalphatan
8 years agoResolver I
Hi,
Below code in calculated column should do your job
Count = COUNTROWS(FILTER(Table1, Table1[Customer] = EARLIER(Table1[Customer]) && Table1[Date] <= EARLIER(Table1[Date])))
- samihuq8 years agoHelper III
Unfortunately it did not solve my problem..