Forum Discussion

ckodadek's avatar
ckodadek
Helper I
10 years ago
Solved

Dynamic TextBox

Hi, I would like to be able to show a single cell's text inside of a text box. Example: Insert text box, then the field in the textbox would take in my column, and filter out all blank values (le...
  • wonga's avatar
    wonga
    10 years ago

    ckodadek

     

    In reference to your original post, you wanted to use FIRSTNONBLANK right? If there will only be one value in a column at any time, then you can probably just use the DAX measure:

     

    Title = FIRSTNONBLANK('Table1'[Column_1],'Table1'[Column_1]).

     

    I used that with sample data where there was only one column with one value in a cell out of 15 cells. I was able to get the value in that cell into a card visual. Let me know if that's what you wanted, thanks.