how to find a last column value …
Example
i have a column value [WPLABEL ]=WP001 …to WP088…
how to find last value (WP088) with expression?
any one please clarify
how to find a last column value …
Example
i have a column value [WPLABEL ]=WP001 …to WP088…
how to find last value (WP088) with expression?
any one please clarify
I can think of at least two scenarios.
SELECT(table[WPLABEL], [_ROWNUMBER] = MAX(table[_ROWNUMBER])
NUMBER(RIGHT([WPLABEL], LEN([WPLABEL]) - 2))
or
NUMBER(SUBSTITUTE([WPLABEL], “WP”, “”))
in order to user MAX function because it only works on a list of numeric values.
Then you can utilize the new VC like
“WP” & MAX(table[new VC])
Hope this gives you some hints.
ANY(SORT(table[WPLABEL], true))
Wow!
Completely missed SORT.