How to add Round function with IF condition ?

Jyotirmaya

Board Regular
Joined
Dec 2, 2015
Messages
204
Office Version
  1. 2019
Platform
  1. Windows
I want to add the ROUND function in the below code.
ROUND(L8,0)


L8 =IF(I8>=2,2*13500,IF(AND(I8=0,IK8<=2),6800*K8,IF(I8=0,6800*2,IF(I8+K8<=2,(I8*13500)+(K8*6800),IF(I8+K8>2,(I8*13500)+(6800*(2-I8)))))))
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
I want to add the ROUND function in the below code.
ROUND(L8,0)


L8 =IF(I8>=2,2*13500,IF(AND(I8=0,IK8<=2),6800*K8,IF(I8=0,6800*2,IF(I8+K8<=2,(I8*13500)+(K8*6800),IF(I8+K8>2,(I8*13500)+(6800*(2-I8)))))))

Please try:

Code:
=ROUND(IF(I8>=2,2*13500.3,IF(AND(I8=0,IK8<=2),6800*K8,IF(I8=0,6800*2,IF(I8+K8<=2,(I8*13500)+(K8*6800),IF(I8+K8>2,(I8*13500)+(6800*(2-I8))))))),0)
 
Upvote 0

Forum statistics

Threads
1,214,375
Messages
6,119,164
Members
448,870
Latest member
max_pedreira

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