Hi
I have a combobox on a query within a report that I am using the following expression:
It should display for example if the following criteria is selected:
'Pallet @ 120 x 100 x 80 cms'
And when the criteria is Null it displays
'Pallet'
However, instead of displaying 'Pallet @ 120 x 100 x 80 cms' it displays '11 @ 120 x 100 x 80 cms' with 11 being 'Pallet' in my table. I have checked my bound column and column count and they are correct, so I can't think why it displays 11.
So technically it is working but it isn't quite!
Any suggestions, muchly aprreciated
Kind regards
Manc
I have a combobox on a query within a report that I am using the following expression:
Code:
=Trim([QuoteDetailPackages] & IIf([QuoteDetailLength] Is Null Or [QuoteDetailLength]=""," "," @ " & [QuoteDetailLength] & IIf([QuoteDetailHeight] Is Null Or [QuoteDetailHeight]=""," "," x " & [QuoteDetailHeight] & IIf([QuoteDetailWidth] Is Null Or [QuoteDetailWidth]=""," "," x " & [QuoteDetailWidth] & " cms"))))
It should display for example if the following criteria is selected:
'Pallet @ 120 x 100 x 80 cms'
And when the criteria is Null it displays
'Pallet'
However, instead of displaying 'Pallet @ 120 x 100 x 80 cms' it displays '11 @ 120 x 100 x 80 cms' with 11 being 'Pallet' in my table. I have checked my bound column and column count and they are correct, so I can't think why it displays 11.
So technically it is working but it isn't quite!
Any suggestions, muchly aprreciated
Kind regards
Manc