Forum Discussion
kristel_tulio
Helper III
3 years agoExtracting specific text using measure
Hi!, I would like to ask if I can use calculated measure in extracting specific values instead of using calculated column because I will just use the result in other measures so need to add colum...
- 3 years ago
try like:
Measure =var _number = MAX( Job[Number] )RETURNIF(CONTAINSSTRING(_number, "_"),RIGHT(_number, 3))
FreemanZ
Super User
3 years agotry like:
Measure =
var _number = MAX( Job[Number] )
RETURN
IF(
CONTAINSSTRING(_number, "_"),
RIGHT(_number, 3)
)
- kristel_tulio3 years ago
Helper III
Hi FreemanZ,
That works! Thank you so much - kristel_tulio3 years ago
Helper III
Hi FreemanZ ,
I just have a bit of concern can I make it an integer and show the total? And I would like to filter it using my date table. There's an indirect relationship between my Date table and that Job table. Thanks for helping out!
Apparently the date table is not working when I change the year.