Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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 -- month wise
Solved! Go to Solution.
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.
Hi,
Create a Calendar Table with calculated column formulas for Year, Month name and Month number. Sort the Month name column by the Month number. Create a relationship (Many to One and Single) from the Date column of the Data Table to the Date column of the Calendar Table. To your visual, drag Year and Month name from the Calendar Table. Write these measures:
ID count = distinctcount(Data[ID])
ID count YTD = calculate([id count],datesytd(calendar[date],"31/12"))
ID count since inception = calculate([id count],datesbetween(calendar[date],minx(all(calendar),calendar[date]),max(calendar[date])))
Hope this helps.
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.
Hello
thanks for your response, this didnt help as it calculated the SUM of the values in the ID column
What i needed was the total number of IDs created prior each date
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
Hi @poojaghuman ,
Assume the table name is 'Ids Received' with columns , ID, Submitted Date
You can then write a measure
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
74 | |
72 | |
71 | |
49 | |
45 |
User | Count |
---|---|
46 | |
38 | |
29 | |
28 | |
28 |