Forum Discussion
jonclay
4 years agoHelper IV
Adding a sequential number based on the date
Hi everyone I'm having a problem adding a sequential number column to my Power BI report and wondered if someone could please help? Our CRM system hold various donations, each of which have multi...
- 4 years ago
jonclay , a New column in Dax
Countx(filter( Table, [donation] =earlier([donation]) && [Date] <= earlier([Date]) ), [Date])
amitchandak
4 years agoSuper User
jonclay , a New column in Dax
Countx(filter( Table, [donation] =earlier([donation]) && [Date] <= earlier([Date]) ), [Date])
jonclay
4 years agoHelper IV
Hi there Amit,
Many thanks for your quick reply. I've tried this and I get an error saying "Token Literal expected" on the [Date] after the &&. Do you know why this might be?
Many thanks
Jon
- amitchandak4 years agoSuper User
jonclay , Can you share what you created. Suggested one seem correct to me
- jonclay4 years agoHelper IV
Hi Amit
Thank you. Please see the image below (using the exact column names rather than date etc):
Many thanks
Jon- amitchandak4 years agoSuper User