Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Cut off text in table visualisation

Hi All, I have a table in PowerBI desktop that shows some information about some columns. A few of those columns contain quite some text, making the table unreasonably huge ( 8-10 lines). Is there a way to cut off the text so that every row is just 1 line? It's a table visualisation. Thanks!

  • You can make a measure that keeps the desired # of characters to show.  For example,

     

    TableText = LEFT(MIN(Table[TextColumn]), 50)

     

    Regards,

    Pat

     

3 Replies

  • mahoneypat's avatar
    mahoneypat
    Microsoft Employee

    You can make a measure that keeps the desired # of characters to show.  For example,

     

    TableText = LEFT(MIN(Table[TextColumn]), 50)

     

    Regards,

    Pat

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Is there not a way to keep the original text as I would like the full text to be available when I export the table (selection of all data) to CSV. So instead of cutting the text off is it possible to just visually make it look something like: "start text ... end text" ?