Forum Discussion
Tooltip Showing Null Columns
- 7 years ago
Hi Anonymous
You may refer to below sample data and create a measure like:
Measure = CONCATENATEX ( FILTER ( Table3, Table3[Value] = "" ), Table3[Attribute], "&" )
Regards,
Cherie
I briefly looked at unpivot and now it makes sense why you've suggested that. I'll play around with the feature a bit today to see what I can mangage. Thank you again for the input!
Forti4040
Hi Anonymous
You may refer to below sample data and create a measure like:
Measure = CONCATENATEX ( FILTER ( Table3, Table3[Value] = "" ), Table3[Attribute], "&" )
Regards,
Cherie
- Anonymous7 years agoNot applicable
Thank you again for the great insights! I can certainly see where you are heading with this and it makes sense how it would work. Being new to the unpivot feature I am a bit confused as to how I can utilize it without impacting the rest of my report data. When I unpivot data it duplicates rows and messes up a bunch of the formulas. Is the intent that I would create a duplicate table that is somehow reading from the original and doing the unpivot action there? This way it keeps the original data intact but has an unpivoted section that I can pull from?
I feel like once I wrap my head fully around the unpivot issues you will have completely solved my issue!
Regards,
Forti4040
- Anonymous7 years agoNot applicable
I did some more digging and figured out the rest. I created a reference table to my original data to work with and that was part of the trick. The other thing I found was that unpivoting actually removed the blanks from my data so I had to replace blanks with a value, unpivot, then replace the value with blanks again. But I've got it running now thanks to you!