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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
The problem when it we selecT yes it is showing correct data , when we press No , it is exculding the current quarter data :
Thr requirement when selected current Yes display only current quarter , when selected No display all quarters including current quarter .
Solved! Go to Solution.
@Anonymous Make your Yes/No slicer into a 2 rows in a disconnected table. Then construct a measure like:
Measure =
VAR __Current = SELECTEDVALUE('ParameterTable'[Column])
VAR __Value = IF(
__Current = "Yes",
SUMX(FILTER('Table',[Current Quarter] = "Yes"),[Value]
SUM('Table'[Value])
)
RETURN
__Value
@Anonymous Make your Yes/No slicer into a 2 rows in a disconnected table. Then construct a measure like:
Measure =
VAR __Current = SELECTEDVALUE('ParameterTable'[Column])
VAR __Value = IF(
__Current = "Yes",
SUMX(FILTER('Table',[Current Quarter] = "Yes"),[Value]
SUM('Table'[Value])
)
RETURN
__Value
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 9 | |
| 7 | |
| 6 |
| User | Count |
|---|---|
| 26 | |
| 22 | |
| 19 | |
| 17 | |
| 10 |