Winston409
New member
- Local time
- Today, 22:21
- Joined
- Oct 29, 2025
- Messages
- 4
Hi all,
I am new to MS Access, I did an online curse, but still struggle to use Access. I am attempting to create a database for all the equipments I work with, my company use a web based system, but I find that it misses an awful lot of data, hence, for my own piece of mind, I want to create my own system to keep up to date with servicing.
I created the following in SQL:
SELECT
tblEquipmentInformation.[EquipmentLocation],
tblEquipmentInformation.[EquipmentModel],
tblEquipmentInformation.[EquipmentSerialNumber],
tblEquipmentInformation.[DateLastServiced],
tblEquipmentInformation.[ServiceInterval],
tblEquipmentInformation.[NextServiceDue],
tblEquipmentInformation.Modality
FROM
tblEquipmentInformation
WHERE
((tblEquipmentInformation.Modality) = "X-Ray")
SELECT
tblEquipmentInformation.[Modality] = "X-Ray",
[182],
[DateLastServiced]
DateAdd("d",[ServiceInterval],[DateLastServiced])
AS
tblEquipmentInformation.[NextServiceDue];
However, this pops up, any ideas, please?? I appreciate it may be something simple, but I cannot seem to find the issue.
Many many thanks in advance.
Winston
I am new to MS Access, I did an online curse, but still struggle to use Access. I am attempting to create a database for all the equipments I work with, my company use a web based system, but I find that it misses an awful lot of data, hence, for my own piece of mind, I want to create my own system to keep up to date with servicing.
I created the following in SQL:
SELECT
tblEquipmentInformation.[EquipmentLocation],
tblEquipmentInformation.[EquipmentModel],
tblEquipmentInformation.[EquipmentSerialNumber],
tblEquipmentInformation.[DateLastServiced],
tblEquipmentInformation.[ServiceInterval],
tblEquipmentInformation.[NextServiceDue],
tblEquipmentInformation.Modality
FROM
tblEquipmentInformation
WHERE
((tblEquipmentInformation.Modality) = "X-Ray")
SELECT
tblEquipmentInformation.[Modality] = "X-Ray",
[182],
[DateLastServiced]
DateAdd("d",[ServiceInterval],[DateLastServiced])
AS
tblEquipmentInformation.[NextServiceDue];
However, this pops up, any ideas, please?? I appreciate it may be something simple, but I cannot seem to find the issue.
Many many thanks in advance.
Winston