Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi
I want to see the year-to-date sales amount per customer and year in a column chart. I used this formula
Solved! Go to Solution.
Hi @parissap ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure named ‘SumSales ’
SumSales =
CALCULATE (
SUM ( UnifiedData[value] ),
FILTER ( 'UnifiedData', 'UnifiedData'[delivery day customer] < TODAY () )
)
2. Use the 'Year' column to create a slicer
3. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @parissap ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure named ‘SumSales ’
SumSales =
CALCULATE (
SUM ( UnifiedData[value] ),
FILTER ( 'UnifiedData', 'UnifiedData'[delivery day customer] < TODAY () )
)
2. Use the 'Year' column to create a slicer
3. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 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 |
---|---|
15 | |
13 | |
7 | |
7 | |
5 |