Help

Re: Count # of Times Current Date Appears in Lookup

526 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Jason_F
6 - Interface Innovator
6 - Interface Innovator

Hey Everyone:

I have a table that links items to form submissions.

I already have a link to see each item and all the form submissions that include that item.

I also have a lookup that looks up the dates of the form submissions in the link to forms.

I want to take that lookup and run a formula to count all the form submissions from today’s date.

Any ideas?

Screen Shot 2022-02-12 at 8.43.21 AM

2 Replies 2
EAugum
6 - Interface Innovator
6 - Interface Innovator

Hi,

I solved this by creating an IF-formula in the table you’re looking up from, saying IF(DateField=TODAY(),1).

Then, rather than using a lookup-field I’d use a rollup-field (rolling up on the DateField) with a COUNTA(values)-formula and setting conditions to only include records where the new ‘If Today’-field = 1.

Screenshot

Edit: Realizing you can make this even easier by skipping the ‘If Today’-field and then just setting the conditions in the rollup-field to Where ‘DateField’ is ‘today’.

Jason_F
6 - Interface Innovator
6 - Interface Innovator

Thanks you for the help