Skip to main content
Question

Test date is a public holiday

  • July 17, 2025
  • 5 replies
  • 55 views

Forum|alt.badge.img+2

Hello, I have a JF table which contains dates of public holidays and an APPRO table which contains a date field. I can't test if the date field in the APPRO table is a public holiday. Does anyone have a solution?

5 replies

TheTimeSavingCo
Forum|alt.badge.img+31

EDITED: Ignore this, ​@Alexey_Gusev ‘s solution below is much better

Hmm, I think you’re going to need to link all of your public holiday records to each of the records in APPRO, and then use a formula field to check whether it’s the same date.  I’ve set it up here for you to check out

IF(
FIND(
{Date formatted},
{Date formatted (from Public Holidays)} & ''
),
'True',
'False'
)

 


Forum|alt.badge.img+2
  • Author
  • New Participant
  • July 17, 2025

ok thank you very much


Alexey_Gusev
Forum|alt.badge.img+25

Note that a bit easier way is to make Date formatted a primary field in “Holidays” and then in APPRO just clean linked field, copy-paste ‘Data Formatted” in it and that’s all - records with links are holidays.


TheTimeSavingCo
Forum|alt.badge.img+31

Oooh yeah, you’re right, that’s a lot cleaner and I’ve set it up here


Forum|alt.badge.img+2
  • Author
  • New Participant
  • July 18, 2025

Hello, I did this in the end, thank you