Forum Discussion
Anonymous
4 years agoNot applicable
What if Parameter not refreshing
Hi All, I have 2 tables containing years' data. I want to create a slicer that would filter the 2 tables at once. I created a "what if Parameter" with a default value. And a condition (a sim...
- 4 years ago
Hi, Anonymous
The value of the calculated column won't change as the slicer changes.
You can create a measure instead of column.
Like this:
Measure = IF(SELECTEDVALUE('Table'[year])=SELECTEDVALUE(Parameter[Parameter]),1,0)Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please feel free to ask me.
Best Regards,
Community Support Team _ Janey
amitchandak
Super User
4 years agoAnonymous ,
are you creating a measure like
calculate(**bleep**(Table1[Value]), filter(Table1, Table1[Year] = [what if Value]))
if not try above.
Slicer do work with columns, if you are trying one
Anonymous
4 years agoNot applicable
Hi,
My formula is:
SELECTED YEAR = if('PurchaseOrders_GL connection'[RECEIVED FY]='SELECTED YEAR'[SELECTED YEAR Value],1,0)
I tried this as per your proposal (for my second table):
SELECTED YEAR = CALCULATE(1,filter(KeyTasks,KeyTasks[FY Key TASK]='SELECTED YEAR'[SELECTED YEAR Value]))
None of the 2 works.