I can never wrap my head around why these don't work for me.
If Position = Defender or Goalkeeper AND G = 0, then show 1 if not show 0
Also tried
This one seems to work better, however it still changes for other positions too.
Before you laugh at me, please tell me where I went wrong.
If Position = Defender or Goalkeeper AND G = 0, then show 1 if not show 0
Code:
=IF(AND(OR([@Position]="*Defender*",[@Position]="Goalkeeper"),[@G]=0),1,0)
Code:
=IF(OR(AND([@G]=0),[@Position]="*Defender*",[@Position]="Goalkeeper"),1,0)
Before you laugh at me, please tell me where I went wrong.
Last edited: