Forum Discussion

idkwhatimdoing's avatar
idkwhatimdoing
Advocate I
1 year ago
Solved

Show selected parameter fields on cards

I am trying to use the new card visual to display all the values of the parameter fields based on what parameter is selected. I have a simplified sample below, although the measures aren't currently ...
  • Anonymous's avatar
    Anonymous
    1 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.

     

  • idkwhatimdoing's avatar
    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.