Forum Discussion
tylermontney
10 years agoRegular Visitor
FIRSTNONBLANK returns blank
I want to return a columns first non blank value. LastLogon = FIRSTNONBLANK('TestReport'[Account_Name], 1) & " was the last to logon." Unfortunately, it returns nothing. I can verify the column ...
- 10 years ago
The formula you provided should work if the rest value of column Account_Name is Blank(except value "tyler.montney"). Now the formula does not get the expected value, so I assume the rest value of the column Account_Name is not Blank, it is empty("").
In this case, the following formula should work:
LastLogon = CALCULATE ( FIRSTNONBLANK ( 'TestReport'[Account_Name], 1 ) & " was the last to logon.", TestReport[Account_Name] <> "" )
Anonymous
4 years agoNot applicable
FIRSTNONBLANK ( 'TestReport'[Account_Name], 1 ) +1
use this query
I think this would be solved problem