Forum Discussion
poojaghuman
3 years agoRegular Visitor
Need help in aggregating values in report using power BI
I am new to using power BI and need support with the following , I have my data in the following format I am looking to aggreagte the total number of IDs based on the submit date ...
- Anonymous3 years ago
Hi poojaghuman
You can create a new column :
Sum = SUMX(FILTER('Table',[SUBMIT DATE]<=EARLIER('Table'[SUBMIT DATE])),[ID])Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
poojaghuman
3 years agoRegular Visitor
Thank you for the response, Apologies for the delay in responding back
I did try this one
I get same value for all dates .. what i need is the total ID count for each date -- "Total IDs created until that date"
I need