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 have a table for the whole years, where I have multiple entries (Value) for the same dates , I want to have a summery table by using DAX to have a daily summery just like how it shown in table 2
This is a sample table
Table 1
Date | Value |
01-01-18 | 3000 |
01-01-18 | 4000 |
01-01-18 | 18000 |
01-01-18 | 12000 |
02-01-18 | 45000 |
02-01-18 | 13000 |
03-01-18 | 8000 |
01-02-18 | 3000 |
01-02-18 | 43000 |
01-03-18 | 2000 |
01-03-18 | 48000 |
02-03-18 | 1000 |
I want to have the result like
Table 2
Date | Value |
01-01-18 | 37000 |
02-01-18 | 58000 |
03-01-18 | 8000 |
01-02-18 | 46000 |
01-03-18 | 50000 |
02-03-18 | 1000 |
Solved! Go to Solution.
@2019,
As other's post , create a new table using DAX below.
Table2 = SUMMARIZE(Table1,Table1[Date],"value",SUM(Table1[Value]))
Or you can use "Group By" feature in Power BI Desktop query editor.
Regards,
Lydia
@2019,
As other's post , create a new table using DAX below.
Table2 = SUMMARIZE(Table1,Table1[Date],"value",SUM(Table1[Value]))
Or you can use "Group By" feature in Power BI Desktop query editor.
Regards,
Lydia
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 |
---|---|
143 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |