Hello,
I made an union query from 3 tables, but 2 field of tables are using column count and column widths functions.
Since I can not open union query in design view i cannot use this function, i guess i need to use SQL coding.
Can you please tell me how to use?
here is my sql view for my union query:
The fields which uses these functions are "InputMaterial" and "OutputMaterial" ( Column Count 2 \ Column Widths 0;4 )
SELECT [CcName],[InputMaterial],[OutputMaterial],[ModuleName]
FROM tbl_ControlAndCommunication
UNION SELECT [EsName],[InputMaterial],[OutputMaterial],[ModuleName]
FROM tbl_EnergySaving
UNION SELECT [EstName],[InputMaterial],[OutputMaterial],[ModuleName]
FROM tbl_EnergyStoring;
Another thing is that i want to filter query using combo box in a form so i cant do this either since design view is not usable
[Forms]![frmModuleSearch]![Combo1]