AUGG! I am not a forms designer. This is my very first attempt.
The PDF can be found here:
http://www.fretworksdesign.com/FretDesign%20OrderForm.pdfOk, first I want the numbers to show AFTER user input is preformed.
But here is my main issue: The 'Price per Piece' needs to change in relation to the quantity in 'Total Pieces'.
I have it so it changes from $1.15 to $1.05 when the target is reached, but when the next targeted change is reached the 'Price per Piece' stays at $1.05.
This is what I have so far.
----- form1.#subform[0].Body.perPiece::calculate - (FormCalc, client) ------------------------------
if (numTotal <= 125 ) then
perPiece = 1.15
elseif ( 125 > numTotal <= 250 ) then
perPiece = 1.05
elseif ( 250 > numTotal <= 500 ) then
perPiece = 0.95
elseif ( 500 > numTotal <= 1250 ) then
perPiece = 0.85
elseif ( 1250 > numTotal <= 2500 ) then
perPiece = 0.75
endif
HELP ME PLEASE! My pilot mailing is shipping on Tuesday July 8th. And the only order form I have does not work correctly.