Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to create an expression where:
Count App ID, in spreadsheet Complete List; excluding field Exclusion =Yes from spreadsheet Partial List
and filters by Location =Arizona, Texas and Date > 01/06/2015
See attached spreadsheet
like this?
=count({<Date=, Location={'Arizona', 'Texas'}, Exclusion={'Yes'}, Date={'>$(=01/06/2015)'}>} APPID)
Make sure format of Date Field and 01/06/2015 should be same
Hi,
If you are not considering Exclusion = Yes
then use expression suggested by Balraj just write -
=count({<Date=, Location={'Arizona', 'Texas'}, Exclusion -={'Yes'}, Date={'>$(=01/06/2015)'}>} APPID)
Regards
Hi Mauricio,
Based on your data,
=Count({< Location={'Arizona', 'Texas'}, Exclusion={'1'}, Date={">01/06/2015"}>} APPID)
Watch out guys.
Using $-sign expansion with an equal sign will treat everything after the equal sign as an expression. Meaning 1 divided by 6 divided by 2015 = 7 seconds into December 30, 1899
Thank you Balraj, it works fine. However, when all records in column Exclusion = 1 (spreadsheet Partial List) the count is zero
I need to count the App ID from spreadsheet Complete List excluding fields Exclusion =1 (11 records) and using the filters as described earlier
Balraj thank you, it works fine. However, when all records in column Exclusion =1 (spreadsheet Partial List) the count is zero.
I need to count the App ID from spreadsheet Complete List excluding fields Exclusion = 1 (11 records) and use the filters as described earlier.