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.
Hello,
I've created a matrix. In the rows I have a course name and skill code - expand the course name to see the skills. In the values I want the skill name. However with all rows collapsed, the default value is either the first or last skill name .
I would like to make that either nothing, or a message "Expand to see skills".
I feel I should be able to use an IF statement
IF(
ISINSCOPE(Course name), "Expand to see Skills", Column[SkillName]
)
but I cannot add in a column into the IF statement.
Is there any way to get round this. I feel there should be.
I could concatenate the code and name and that would work, but it doesn't look great.
Thanks alot for any help.
Solved! Go to Solution.
Hi @justlearning50
What you need is to specific one value for the column:
SelectedValue(table[Column])
Should do the trick 🙂
In my example when I expand the Towns I want to see the CentreNames:
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Hi @justlearning50
What you need is to specific one value for the column:
SelectedValue(table[Column])
Should do the trick 🙂
In my example when I expand the Towns I want to see the CentreNames:
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Thank you very much. That is great to know.