Hey guys,
I want to create a concatenated text value based on which fields of the same table are still blank. Not sure if a regular column or VC is best.
This is for a payroll purpose where I want to have a field in a detail view below an employeeโs name which states which documents they still need to finalize their onboarding. These forms are file type columns with scanned docments such as an I9, direct paycheck deposit or W-4. Ideally the field would read as follows if the person were missing all threeโฆ
โStill needs: I9 form, W-2 Form, direct deposit formโ
How would I go about doing this? Essentially any of these file type fields which are blank Iโd like to add to this list.
Hope thatโs specific enough.
Solved! Go to Solution.
Like this:
CONCATENATE(
LIST(
IFS(ISBLANK([i9-form-column]), "I9 Form"),
IFS(ISBLANK([w2-form-column]), "W-2 Form"),
IFS(ISBLANK([directdeposit-form-column]), "Direct Deposit Form"),
...
)
- LIST("")
)
See also:
Like this:
CONCATENATE(
LIST(
IFS(ISBLANK([i9-form-column]), "I9 Form"),
IFS(ISBLANK([w2-form-column]), "W-2 Form"),
IFS(ISBLANK([directdeposit-form-column]), "Direct Deposit Form"),
...
)
- LIST("")
)
See also:
Steve you are the man, the myth and the legend rolled into one sir!
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |