Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
77 | |
75 | |
46 | |
31 | |
28 |
User | Count |
---|---|
99 | |
93 | |
50 | |
49 | |
46 |