Runawaygeek
Registered User.
- Local time
- Today, 23:09
- Joined
- Mar 28, 2016
- Messages
- 77
Hi,
so i have built a query that takes a date cell and a time cell and puts them into a new cell as "dd/mm/yyyy hh:mm:ss"
Then i have another query that takes a Date Time String from another table (cant change this as field can be anything for other service types) and i use CDATE(TEXTFIELD)
This outputs in the Query as "dd/mm/yyyy hh:mm:ss"
I then have a further query that compares these two values,
EXPR: FORMAT([DT_1]=[DT_2], "Y/N")
but when i do this, i get "Invalid use of null" WHY???
Thanks,
Ben
so i have built a query that takes a date cell and a time cell and puts them into a new cell as "dd/mm/yyyy hh:mm:ss"
Code:
Publish_DT: [Schedule Date] & " " & Format((TimeValue([Schedule Time])+TimeValue([Duration]))-(TimeSerial(0,15,0)),"Long Time")
Then i have another query that takes a Date Time String from another table (cant change this as field can be anything for other service types) and i use CDATE(TEXTFIELD)
This outputs in the Query as "dd/mm/yyyy hh:mm:ss"
I then have a further query that compares these two values,
EXPR: FORMAT([DT_1]=[DT_2], "Y/N")
but when i do this, i get "Invalid use of null" WHY???
Thanks,
Ben