on 2025 Jan 31 5:17 PM
I have two columns named Id and approvers
1st row Id no 1 has values David;Musta;
2 nd row Id no 1 has values Vinay;
3rd row Id no 1 has values Kronid;
I want the outcome as single line and Id should have only 1 and Approvers values should be David;Musta;Vinay;Kronid
can someone help me on this please
Request clarification before answering.
Define the following variables:
v_approvers: =(Previous(Self; ([Id]))+([approvers]))
v_approvers_max: =NoFilter(Max([v_approvers])) ForEach ([Id])
v_status: =NoFilter(If ([v_approvers] = Max([v_approvers]) In ([Id])) Then "D"; All )
then hide the coulmn "approvers" and apply the filter (v_status equal to "D") to the table
...
hope it helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.