Hi everyone,
So i have this application i'm currently working on and i'm wondering why it's not allowing me to add another condition to my if.
Please see my formula below.
If(
varSepSelected = 1,
'Database',
If(
varSepSelected = 2,
Filter(
'Database',
'Assigned To'.Email = User().Email
),
If(
varSepSelected = 3,
Filter(
'Database',
Status.Value = "New" && 'Assigned To'.Email = User().Email
)
)
)
)
and this is the new condition im trying to add on VarSepSelected=1, Database && If(User().Email="TestSubject@gmail.com", filter(Database, BU= "US123"))
i tried adding it to the bottom of my code and inputting ";" but it's only underlining the " ; " on red line.
Hope this make sense and if anyone can help, totally appreciate it.
Thank you