The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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?
User | Count |
---|---|
85 | |
84 | |
36 | |
34 | |
31 |
User | Count |
---|---|
92 | |
79 | |
66 | |
55 | |
52 |