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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
LucasFranz
New Member

selecting a specific measure based on date

hey everyone, this is my first post here and I hope a can contribute the same way this community is helping me.

 

so I have 2 measures, which compile financial data (from the same "groups"), but one is BUDGET for now on, and the second one is DONE (each one comes from a different table).

I really want to use something like an measure with IF statement to condense both measures in the same timeline.

e.g.: for dates < 11/1, DONE; for dates > 11/1, BUDGET

 

image.png

 

so I need to have GREEN (DONE) columns until october, and BLUE (BUDGET) columns in november and december, without all these blank columns, and only BLUE (BUDGET) in november.

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @LucasFranz 

You can try formula as below:

Measure = IF(SELECTEDVALUE('Table'[Date])<DATE(2021,11,1),'Table'[Done],'Table'[Budget])

If it doesn't work, please share your sample file.

 

Best Regards,
Community Support Team _ Eason

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @LucasFranz 

You can try formula as below:

Measure = IF(SELECTEDVALUE('Table'[Date])<DATE(2021,11,1),'Table'[Done],'Table'[Budget])

If it doesn't work, please share your sample file.

 

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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