I have some part numbers that are someting like this
0001-10
0015-25
0036-50
I am trying to create an iff statement, the number after the dash "-"is the number of pieces of that part. I need to multiply that by the price but not sure how to go about putting that into an iff statement
I tried this
but that did not work
any suggestions?
0001-10
0015-25
0036-50
I am trying to create an iff statement, the number after the dash "-"is the number of pieces of that part. I need to multiply that by the price but not sure how to go about putting that into an iff statement
I tried this
Code:
iif(partnum like 50, 50*price)as Total_Price
but that did not work
any suggestions?