Help with a dynamically created list based on ISBLANK values

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 Solved
0 2 244
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

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:

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

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!

Top Labels in this Space