KPI Tree

Steps to Configure the KPI Tree in the Performance Flow Visual:










Download the sample report file:
Last updated
Was this helpful?











Last updated
Was this helpful?
Was this helpful?
Links =
VAR _name = 'Table'[Name]
VAR _parentsID =
CONCATENATEX(
FILTER(
'Table',
SEARCH("[" & _name & "]", 'Table'[Expression], 1, 0) > 0 && 'Table'[Name] <> _name
),
'Table'[ID],
","
)
RETURN
IF(LEN(_parentsID) > 0, _parentsID, BLANK())
Parent ID =
LEFT(
'Table'[Links],
FIND(",", 'Table'[Links] & ",", 1) - 1
)