Forum Discussion
bmk
Helper II
4 years agoGenerate text based on condition like in Excel
Consider an Excel blank sheet where cell A1 = 12, and we define a condition for cell B1 =IF(A1>10,"Cell is greater than 10", "Cell is less than 10"). Result for cell B1 = Cell is greater than 10. ...
- 4 years ago
Thank you!
Anonymous
4 years agoNot applicable
Hi bmk ,
I created a sample pbix file(see attachment), please check whether that is what you want.
Create a measure or calculated column as below to get the status text:
Measure =
VAR _curvalue =
SELECTEDVALUE ( 'Table'[A] )
RETURN
IF (
_curvalue > 10,
"Cell is greater than 10",
IF ( _curvalue < 10, "Cell is less than 10", "Cell is equal to 10" )
)Column =
SWITCH (
TRUE (),
'Table'[A] > 10, "Cell is greater than 10",
'Table'[A] < 10, "Cell is less than 10",
"Cell is equal to 10"
)
Best Regards
- bmk4 years ago
Helper II
Thank you!