How can we get value after an operator for the value which we separate using split function

Hello,


How can we get value after an operator for the value which we separate using split function.

Eg. 249.5832

Using Split for 249.5832, we can get 249 and 5832. But, I want value after split. If I index with 2, it's getting 5832, but I have to use this for a!forEach for the below expression.

For below expression, getting the result as in the image

local!calP1days:
a!forEach(
items: local!P1,
expression: if(
a!isNotNullOrEmpty(fv!item),
split(fv!item,"."),{}
)
)
,
local!calP1days
)

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data