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
In front end based on slicer selection only, I need to show Product, Release, Calculated column fields in a table
You definitely can created calculated columns and use them for slicers. What you can't to is select a slicer and have it recalculate a calculated column. Maybe if you explain your date model (tables, relationships, etc) and explain what you want to do, someone will be able to help.
You can't create calculated columns based on slicers. Same goes for calculated tables. You need to write measures
Would something like this work?
releaseProduct =
VAR release = SELECTEDVALUE(slicer[release])
RETURN
SWITCH(
TRUE(),
DataTable[release] = release, DataTable[Product],
DataTable[release] < release, "Reg",
BLANK()
)
You can't create calculated columns based on slicers
Yes, I know however I need use this calculated colunm as slicer to select (dropdown ) selection, then what is the alternate way to achive this?