My database has a field 'Offer Description' which may or may not include a price, for example $29.99. I have a query where I want to identify the price in a new field called 'Quantity Discount Price'.
Using Builder I tried writing numerous expressions that will result in the 5 or 6 character price (ex $7.99 or $29.99), if there is a price associated with that record in the 'Offer Description' field, but with no luck:
QD Price: IIf([Offer Description] Like '*$*',Right$('$'+5),"")
Can anyone point me in the right direction and where my expression is wrong?
Thank you,
Rob