if statement please

search4f

New Member
Joined
Sep 22, 2015
Messages
3
i appreciate your help
i need something to add .04 percent tax if the figure is $45000 or greater
lets sale b2 is my selling price then b7 would be 0 unless b2 is $5k or more thanks
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
=if(b2>=5000,b2*.04,0)

or since the first part of your question mentioned $45000

=if(b2>=45000,b2*.04,0)
 
Upvote 0
=if(b2>=5000,b2*.04,0)

or since the first part of your question mentioned $45000

=if(b2>=45000,b2*.04,0)

Thank you so very much for the quick reply another question please
If I wanted this only to apply to a new car and not a used one could have a dropdown or check box to pick new or used in a cell and then make this formula work if new only. Thanks again
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,580
Members
448,972
Latest member
Shantanu2024

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