Show if

hi

if a number is entered in the first cell and the date and time are entered in the second cell, what kind of formula should I write in the view if I create a formula that will be entered only once a day?

It didn't happen

ISNOTBLANK(
SELECT(nt[number], AND(ISNOTBLANK(nt[date]), ISNOTBLANK(nt[number])))
)

It didn't happen

ISBLANK(
SELECT(nt[date], AND([date] = TODAY(), ISNOTBLANK([number])))
)

etable is name "nt" and "date" formula is now()

help ๐Ÿ™‚

Solved Solved
0 5 162
1 ACCEPTED SOLUTION

Try this in column 2's Editable? expression:

OR(
  ISBLANK([column 1]),
  (DATE([column 1]) <> TODAY())
)

View solution in original post

5 REPLIES 5

Steve
Platinum 5
Platinum 5

I'm afraid I don't understand your problem. Can you describe it in a different way? If English is not your native language, please describe the problem in your native language.

teลŸekkรผr ederim. 2 ayrฤฑ sรผtundan oluลŸan bir tabloda veri toplamada : kullanฤฑcฤฑnฤฑn bugรผn iรงin 1 kere veri girebilmesini saฤŸlamaya รงalฤฑลŸฤฑyorum. sonrasฤฑnda ya gizlenmeli yada engellenmeli.

1.sรผtunda : tarih saat (now formulรผ ile otomatik )

2.sรผtunda ise sadece numara var (kullanฤฑcฤฑ giriyor)

kullanฤฑcฤฑ gรผn iรงinde baลŸka sรผtunlara yรผzlerce veri girecek ancak belirlediฤŸim hรผcreye sadece gรผnde 1 kere veriyi girebilmeli.

saygฤฑlar sevgiler.

Try this in column 2's Editable? expression:

OR(
  ISBLANK([column 1]),
  (DATE([column 1]) <> TODAY())
)

thank youytr.png

I'm making a logical mistake. I will try and get back

Top Labels in this Space