Combine hide when

I’m trying to combine 2 hide whens and I’m running into problems. I’ve tried testing this all sorts of ways and can’t figure it out. This can be frustrating when there are so many rules…

Actually I’m checking the box and writing it as “show when”. There are so many rules for this. Maybe that’s my probelem.

Here is the one that works now.

!((sup = “Yes” & Cost <= 10000) | (mgr = “Yes”))

I have 5 fields with names in them. I need only these 5 people to have access ( field1-field5)

@Name([CN]; @UserName) = field1…

Thanks…

Subject: combine hide when

Hello,

I am not sure I understand exactly what you mean, but if you are using the Hide Paragraph if formula is true, I found out couple time that it does not read the | the way I understand it. I had to use & instead.

Mine was hide if…

(@name([cn];@username!=“ndnd jhdt”) & (@name([cn];@username!=“gttt sgsge”)

Subject: combine hide when

How about something like

F1 := @If(Field1 = @Name([CN]; @UserName);1;0);

F2 := @If(Field2 = @Name([CN]; @UserName);1;0);

F3 := @If(Field3 = @Name([CN]; @UserName);1;0);

F4 := @If(Field4 = @Name([CN]; @UserName);1;0);

F5 := @If(Field5 = @Name([CN]; @UserName);1;0);

F6 := F1 + F2 + F3 + F4 + F5

If F6 > 0 then the user is in one of the five fields.

Subject: RE: combine hide when

Good idea! Thanks…