Show if with many categories

I have a payment list, example Cash,Transfer Bank A, Transfer Bank B, Transfer Bank C and i have a pay proof column. I want when choose Bank Transfer only a payment proof column arrives. How does it how to?

Solved Solved
0 4 149
1 ACCEPTED SOLUTION

Try this one

AND(
   ISNOTBLANK([Cara Bayar]),
   OR(
      [Cara Bayar]=โ€œTRF BCAโ€,
      [Cara Bayar]=โ€œTRF MANDIRIโ€,
      [Cara Bayar]=โ€œTRF BNIโ€
   )
)

View solution in original post

4 REPLIES 4

Put this in your Show If Formula in your Payment Proof column

AND(
    ISNOTBLANK([Payment List]),
    [Payment List]=โ€œBank Transferโ€
)

Thanks for the help, but after I tried, the formula didnโ€™t work, the trasfer proof pool didnโ€™t show up, hereโ€™s my formula

AND(
ISNOTBLANK([Cara Bayar]),
[Cara Bayar]=โ€œTRF BCAโ€
[Cara Bayar]=โ€œTRF MANDIRIโ€
[Cara Bayar]=โ€œTRF BNIโ€
)

Try this one

AND(
   ISNOTBLANK([Cara Bayar]),
   OR(
      [Cara Bayar]=โ€œTRF BCAโ€,
      [Cara Bayar]=โ€œTRF MANDIRIโ€,
      [Cara Bayar]=โ€œTRF BNIโ€
   )
)

THANK YOU SO MUCH FOR YOUR HELP

Top Labels in this Space