Forum Discussion
Show selected parameter fields on cards
- Anonymous1 year ago
Thanks for the reply from amitchandak , please allow me to provide another insight:
Hi, idkwhatimdoing
Based on my current testing, placing the parameter field directly in the new card visual is not feasible. Here are my findings:
To better align with your needs, I propose the following solution:
1.Firstly, copy the query in Power Query.
2.Secondly, modify the column names to match the first row.
3.Adjust the new card visual accordingly.
4.Then, create a measure and modify the following settings for each column.
1 = CONCATENATEX( 'Table', 'Table'[Column1], UNICHAR(10) )2 = CONCATENATEX( 'Table', 'Table'[Column2], UNICHAR(10) )3 = CONCATENATEX( 'Table', 'Table'[Column3], UNICHAR(10) )5.The final results are as follows:
Of course, you might find other visual objects, such as a table or matrix, to be quite useful as well.
If you discover any new solutions, we would love for you to share them with us!
Please find the attached pbix relevant to the case.
Best Regards,
Leroy Lu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 1 year ago
I was able to find a custom visual that displays the categories in the method I'm seeking: Multi Info Cards. It just doesn't allow as much customization as the built-in new cards visual. So I'm still open to suggestions.
idkwhatimdoing , You can get selected filed parameter based on
Selected Parameter = maxx(filter(Parameter ,Parameter[Parameter Order] = SELECTEDVALUE(Parameter[Parameter Order])), Parameter[Parameter])
The based that you still need static measure to get all measure
Switch( True(),
[Selected Paramete] ="Category", concatenatex(Values(Item[Category]), [Category], ", ") ,
//Add code for others
)
Thank you for your response, amitchandak. I actually do have measures similar to these. (It's always validating to know that I'm on the right track with at least part of my model 🙂!) However it won't give me the categories separately in each card to link to my measures. Perhaps I oversimplified my problem or I'm going about this the wrong way... or both. I will keep playing around with it. Thanks again.