Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anshenterprices
Helper IV
Helper IV

Dynamic text box text update based on the slicer selection

Hi,

 

source data



Catergrorycodefeedback1feedback2
Cat1a piece of text placed within a program to help other users to understand it, which the computer ignores when running the program.place a piece of explanatory text within (a program) to assist other users.
"the only way to solve the problem is to code for the hardware directly—just make sure that it's clearly commented"
Cat2s to understand it, which the computer ignores when running the program.he only way to solve the problem is to code for the hardware directl
Cat3a piece of text placed within a program to help other users to understand it,just make sure that it's clearly commented"



when user selects cat1 from Catergrorycode slicer then textbox text should be change with two paragraphs as feedback1 and feedback2 in the same textbox with some bullets point

2 ACCEPTED SOLUTIONS
nandukrishnavs
Super User
Super User

@Anshenterprices 

 

Try the below DAX

Measure = 
UNICHAR ( 11044 ) & " "
    & SELECTEDVALUE ( 'Table'[feedback1] )
    & UNICHAR ( 10 )
    & UNICHAR ( 10 )
    & UNICHAR ( 11044 ) & " "
    & SELECTEDVALUE ( 'Table'[feedback2] )

 

nandukrishnavs_0-1626089063881.png




Regards,
Nandu Krishna

Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 👍

Proud to be a Super User!

 


Regards,
Nandu Krishna

View solution in original post

@Anshenterprices  You can use the below code to show bullets points wherever you need.

UNICHAR ( 11044 )

 


Regards,
Nandu Krishna

View solution in original post

4 REPLIES 4
Anshenterprices
Helper IV
Helper IV

@nandukrishnavs  Thank you

nandukrishnavs
Super User
Super User

@Anshenterprices 

 

Try the below DAX

Measure = 
UNICHAR ( 11044 ) & " "
    & SELECTEDVALUE ( 'Table'[feedback1] )
    & UNICHAR ( 10 )
    & UNICHAR ( 10 )
    & UNICHAR ( 11044 ) & " "
    & SELECTEDVALUE ( 'Table'[feedback2] )

 

nandukrishnavs_0-1626089063881.png




Regards,
Nandu Krishna

Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 👍

Proud to be a Super User!

 


Regards,
Nandu Krishna

@nandukrishnavs synacrio 2- how to add bullets points in the table matrix of each row text

@Anshenterprices  You can use the below code to show bullets points wherever you need.

UNICHAR ( 11044 )

 


Regards,
Nandu Krishna

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.