Hey everyone,
I got an issue with a Countif, i have a list with 4 columns :
Date / Service / APJ1 / APJ2 / APJ3 / APJ4
09-07-24 / Night / User1 / User 2 / User 6 / User9
07-07-24 / Day / User2 / User4 / User 9/ User 8
The AP column are choices with the same values, and i want to be able to count how many time a value appears in all the column for example on a combobox i select User2 i need to see : 2.
I tried with
CountIf(
Gallery2.AllItems;
'APJ 1 (08h-16h)'.Value = ComboboxCanvas2.Selected.Value ||
'APJ 2 (08h-16h)'.Value = ComboboxCanvas2.Selected.Value ||
'APJ 3 (16h-08h)'.Value = ComboboxCanvas2.Selected.Value ||
'APJ 4 (16h-08h)'.Value = ComboboxCanvas2.Selected.Value
)
but it returns wrong numbers or none.
Thank you in advance for your help