Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
IN DIRECT QUERY MODE
I created two visuals for:
This filters to last 30days if you click yes:
If i click Last 30days? Yes, then the button for Is It today? Yes appears.
I'm not sure why this occurs, any help would be appreciated.
Solved! Go to Solution.
@Anonymous , Last 30 Days include today, so when you make it no you will not get yes for last 30 days.
Check if TI based on today can help
You can create field parameter or calculation group
Today = CALCULATE([Net], FILTER('Date','Date'[Date] = Today() ) )
Last 30 Days= CALCULATE([Net], FILTER('Date','Date'[Date] <= Today() && 'Date'[Date] >= Today() -30 ) )
@Anonymous , Last 30 Days include today, so when you make it no you will not get yes for last 30 days.
Check if TI based on today can help
You can create field parameter or calculation group
Today = CALCULATE([Net], FILTER('Date','Date'[Date] = Today() ) )
Last 30 Days= CALCULATE([Net], FILTER('Date','Date'[Date] <= Today() && 'Date'[Date] >= Today() -30 ) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.