conditioning in excel based on function

happydz

New Member
Joined
Jan 11, 2017
Messages
46
Office Version
  1. 2010
4JoJt
Hi
I’m trying to use conditioning in excel as following
If the values in column (cost price) is <$49.99 then write down $4.99 as shipping price
If the values in column (cost price) is >$49.99, then write down $0.00 as shipping price
Applies the rule to the other rows
Thank you
8ar9E.png

8ar9E.png
https://imgur.com/a/4JoJt
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
=IF ( Cost Price cell ) < 49.99, 4.99 , 0 )
But that will do zero for 49.99 - you did not say if you wanted 0 or 4.99 for an item costing exactly 49.99
just add an = if you want 49.99 to cost 4.99 delivery
=IF ( Cost Price cell ) < = 49.99, 4.99 , 0 )
or
=IF ( Cost Price cell ) < 50, 4.99 , 0 )
 
Upvote 0
Your snapshot does not show the column labels. The formula below assumes the "cost price is in column A. Enter the formula below in column B.
=if(A2<=49.99,4.99,0)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,322
Members
452,635
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top