Count Select

Sorry, I do not speak English. I support myself with a translator.

I have something like that.

symboldata
I Kkow 130/2128.06.2021
I Kkow 130/2229.06.2021
I Kkow 130/2330.06.2021
I Kkow 130/2401.07.2021
I Kkow 130/2526.07.2021
I Kkow 130/2627.07.2021
I Kkow 130/2728.07.2021
I Kkow 130/2829.07.2021
I Kkow 130/2902.08.2021

Formula: 

COUNT(SELECT([symbol], AND([data] >= [start date], [data] <= [end date])))

start date=1.07.2021

end date=31.07.2021

Formula result=5 (is correct)

How to make the formula result=1  (because it is one symbol)

 

 

0 2 107
2 REPLIES 2

You're using SELECT wrong

https://help.appsheet.com/en/articles/2357314-select

Make sure to use [_THISROW]s in your select where appropriate as well.

I found a solution.

COUNT(UNIQUE(SELECT([symbol], AND([data] >= [start date], [data] <= [end date]))))

 

Top Labels in this Space