what is the best practice of using formulas on this senario so that workbook does not become slow.

President

Board Regular
Joined
Aug 27, 2014
Messages
130
i have workbook that i received from my sister, it has alot of formulas with hardcoded text in them.

for example =if(A2="Procurement Department Los Angeles Area", True, False) would it make any different in terms of speed if i put text Procurement Department Los Angeles Area in a cell lets say B1 and i simply =if(A2=B$1, True, False)
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
I don't think it will increase the speed by putting this in another cell.

I will think it will make it easier to amend if you want to copy the formula.
 
Upvote 0
You probably do not need the "if"

Either of the following will work.

Excel 2010
ABCD
1Procurement Department Los Angeles Area
2Procurement Department Los Angeles AreaTRUE
3Procurement Department Los Angeles AreaTRUE
4
1a
Cell Formulas
RangeFormula
B2=A2="Procurement Department Los Angeles Area"
B3=A3=B1
Named Ranges
NameRefers ToCells
rT=zList!$B$2:$D$3
 
Upvote 0

Forum statistics

Threads
1,216,269
Messages
6,129,813
Members
449,538
Latest member
cookie2956

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