How to display all values in multivalued field

The fields are Computed ones and multivalued and we hav to Dispaly all values.

we tried this code but it displays on the last value

FIELD M1Per:=“”;

@For(n := 1;

n <= @Elements(M1Hrs);

n := n + 1;

FIELD M1Per:=@Round((@TextToNumber(M1Hrs[n])*100)/TotalHours;5);));

@Explode(@Text(M1Per)

Subject: I would check roughly in this area

You could try @Transform instead of @For - actualy it might even work without a loop at all. - I think I would try this first (New Stuff in Red) -This is not tested.

FIELD M1Per:=“”;

@For(n := 1;

n <= @Elements(M1Hrs);

n := n + 1;

@IF (n = 1;

FIELD M1Per:=@Round((@TextToNumber(M1Hrs[n])*100)/TotalHours;5);));

;

FIELD M1Per:= M1Per : @Round((@TextToNumber(M1Hrs[n])*100)/TotalHours;5);));

)

@Explode(@Text(M1Per)

Subject: Thanx

Thankyou very very much.This really helped and it worked.

Hope for more responses from your side

Subject: Resonses for what problem

and which version of micro payment :slight_smile: