Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi ,
I have sales value for jan and feb but no values for march. In such case how to get totalqtd value if user select March from slicer.
Table
Name Period Sales
abc 01/01/2022 100
abc 02/02/2022 100
Created calendar table starting date is 1/1/2022 and created a relationship with period.
Below query not giving any value if user select March from slicer(Calendar[Date])
@Anonymous Create a Quarter column in your Calendar table Quarter = QUARTER([Date]). Then you can do this:
qtdSales =
VAR __Year = MAX('Calendar'[Year])
VAR __Quarter = MAX('Calendar'[Quarter])
VAR __Dates = SELECTCOLUMNS(FILTER(ALL('Calendar'),[Year] = __Year && __Quarter = [Quarter]),"__Date",[Date])
VAR __Table = FILTER('qtd',[Period] IN __Dates)
RETURN
SUMX(__Table,[Sales])
Dont' use TI functions. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TITHW/m-p/434008
For March I am not getting any data.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |