Forum Discussion
Anonymous
5 years agoNot applicable
Table visualization - Q&A
Hi all, I have this table below: I performed conditional formatting with number to highlight the status level (by converting the string into an intger fit to every status). I would l...
Jihwan_Kim
5 years agoSuper User
Status measure : =
IF (
HASONEVALUE ( Tasks[Task] ) && HASONEVALUE ( 'Status'[Status] ),
COALESCE ( SELECTEDVALUE ( Data[Status] ), "" )
)
Status flag : =
VAR _indexnumber =
CALCULATE ( MAXX ( Data, RELATED ( 'Status'[Index] ) ), ALL ( 'Status' ) )
VAR _selectedindexnumber =
SELECTEDVALUE ( 'Status'[Index] )
RETURN
SWITCH (
TRUE (),
_selectedindexnumber < _indexnumber, 1,
_selectedindexnumber = _indexnumber, 9,
BLANK ()
)
- Anonymous5 years agoNot applicable
Hi,
I see that you divided the data model into 3 table - however I want to perform that by only 1 table - can I do it?
Thanks a lot!- Jihwan_Kim5 years agoSuper User
I failed to make those into one table.
If you have one table for the above, please provide it. Then, I can try to use that one table to create the same result.
Thanks.
- Anonymous5 years agoNot applicable
Hi,
Thanks for the quick replay, please find the attached PBI pictures (I can't share the file):