Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
85 | |
66 | |
52 | |
47 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |