Forum Discussion
gssarathkumar
2 years agoHelper I
DAX Evaluation
What could be the possible output of below DAX expression?
FinalVal = VAR fetched = LASTNONBLANK(SELECTCOLUMNS(FILTER(RELATEDTABLE('Table1'),CONTAINSSTRING([Field1],"State")),"Total Time",[Field2]),TRUE())
return
IF(fetched = BLANK(), BLANK(), fetched/100)
@amitchandak , @Greg_Deckler @lbendlin , @DesktopOwl @Goodlytics4U @help
1 Reply
- amitchandakSuper User
gssarathkumar , seem like fetched contains last non-blank value of 'Field2' where 'Field1' contains the substring State
If there is a value, it has been divided by 100