ISBLANK [2 Columns]

Hello,

I wanted to LIST values based on an IFS()

LIST(
IFS(
ISNOTBLANK([ppd_am]), “AM”,
ISBNOTLANK([ppd_pm]), “PM”,
ISBNOTLANK([ppd_am], [ppd_pm]), “Full Day”
)
)

I basically want it to show AM, PM, and Full Day… But not show each one if the value is blank. It is an Enum that will or will not display each based on the values in [ppd_am] and [ppd_pm].

The issue is with ISBNOTLANK([ppd_am], [ppd_pm]), “Full Day”

How can I check 2 values?

3X_2_8_2860ff9ed15bde97dd4efb83daa150112c2292fb.png

Solved Solved
0 2 508
1 ACCEPTED SOLUTION

You’re wanting to populate your Enum options based on these ISNOTBLANK conditions, correct?

LIST(
  IFS( ISNOTBLANK( [ppd_am] ) , "AM" ) ,
  IFS( ISNOTBLANK( [ppd_pm] ) , "PM" ) ,
  IFS( AND( ISNOTBLANK( [ppd_am] ) , ISNOTBLANK( [ppd_pm] ) ) , "Full Day" )
) - LIST("")

View solution in original post

2 REPLIES 2

You’re wanting to populate your Enum options based on these ISNOTBLANK conditions, correct?

LIST(
  IFS( ISNOTBLANK( [ppd_am] ) , "AM" ) ,
  IFS( ISNOTBLANK( [ppd_pm] ) , "PM" ) ,
  IFS( AND( ISNOTBLANK( [ppd_am] ) , ISNOTBLANK( [ppd_pm] ) ) , "Full Day" )
) - LIST("")

WHY DIDN’T I THINK OF AND!!! lol

Thanks Marc!!!

I believe that should fix it.

Top Labels in this Space