Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to count all [DATA_LIMITE] that >= Today(), but my field are not in Date Format, so i tried with a more simple equacition (just equal), with "If "condition.
If (FLOOR([DATA_LIMITE])=FLOOR(TODAY()), TRUE,FALSE)
With this i got 'true' where need to be 'true', so i tried the same logic to set analysis and did not work like i expected.
I tried use that
COUNT(${<FLOOR(DATA_LIMITE)={"$(=FLOOR(TODAY()))"}>}DISTINCT OID_SYSTEM)
Thank you
If you want to limit the results to today and no future dates then
Count({<DATA_LIMITE={">=$(=FLOOR(TODAY()))<$(=FLOOR(TODAY()+1))"}>} DISTINCT OID_SYSTEM)
you are right but it will be inside of curly braces
I change my code to DATE_LIMITE be in Date Format, but still not working
COUNT(${<DATA_LIMITE = {"$(=TODAY())"}>} DISTINCT OID_SYSTEM)
hahaha thats right! You solve!
Thank you.
COUNT({$<DATA_LIMITE = {"$(=TODAY())"}>} DISTINCT OID_SYSTEM)
Great Thank you, it was nice to talk to you!