Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |