Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Aligning dates

 

Hello,

 

I have a bunch of data by date for a handful of dates from a live SQL. I want to be able to track the different points on a graph with a slicer that chooses the point. A sum by time is a point I want to make. 

astarrett_2-1697584516184.png

I did this to get all the points together and a sum

XDDD1S1N01A = CALCULATE(
    FIRSTNONBLANK(XDDD1S1N01A[DataValue],1),
    FILTER(ALL(XDDD1S1N01A),XDDD1S1N01A[Timestamp]=Dates[Timestamp])
)

astarrett_0-1697584434593.png

astarrett_3-1697584771730.png

 


The graph is exactly what I want, as is the matrix table, but because of how I did the middle table, the time becomes the slicer, not the point. How can I do this where the point becomes the selected in the slicer, not date and time?

astarrett_1-1697584460752.png

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

 

XDDD1S1N01A = CALCULATE(
FIRSTNONBLANK(XDDD1S1N01A[DataValue],1),
FILTER(ALL(XDDD1S1N01A),XDDD1S1N01A[Timestamp] in values(Dates[Timestamp]) )
)

 

Or use treatas

https://www.sqlbi.com/articles/propagate-filters-using-treatas-in-dax/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

That returned all zeros. 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors