I have expressions to concatenate Sizes
This "calculated" value is utilised in so many queries so I experimented with storing the size in a Field. I reckon that by doing so I acheived a perform gain.
Simon
Code:
Size cms: IIf(Not IsNull([Orig Depth]),[Orig Height] & " x " & [Orig Width] & " x " & [Orig Depth],IIf(Not IsNull([Orig Width]),[Orig Height] & " x " & [Orig Width],[Orig Height])) & " cm"
This "calculated" value is utilised in so many queries so I experimented with storing the size in a Field. I reckon that by doing so I acheived a perform gain.
Simon