Checking dayly data is added

Hello, Iโ€™ve got a table data, and due to workflow constrains, only a daily data must be typed (it is easy to solve) but furthermore, every day have to exist one data. So, if a data isnโ€™t entered today, tomorrow the app should warn, and it shouldnโ€™t let you enter tomorrowโ€™s data if you donโ€™t enter todayโ€™s one before. How can I do it?
I have tried to create a control colunm where I calculate the intervale between the date of 2 consecutive registers (It must be 1) and writing at the โ€œvalid ifโ€ field ([_this]=1], but it doesnโ€™t work.
Can somebdy help me?

0 3 130
3 REPLIES 3

Can somebody help me?

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Juan_Luis_Moreno

What about that ?

ISBLANK(
  FILTER("yourDataLogTable",
    DATE([TimeStamp])=TODAY()-1
  )
)

it will return true if yesterdayโ€™s input is missing

For reference:

Thanks. Your solution is fine but it wonโ€™t let us type the โ€œlostโ€ records , because this expression doesnโ€™t depend on the date you are trying to record. So Inspired on your solution Iโ€™ve tried this:

valid if:: ( [_this] - MAX(โ€œmyTableโ€[date] )=1

And it works.

Top Labels in this Space