Combine AND / Or
if A and any of these ( b, c, d)
i tried something like this but doesnt work, if A && b || c || d { do something here }
if (A && (b || c || d)) { do something here }
ah thanks devinemke ...working great thank you