Re: Formula help
Hi Ok, so I will try and explain my issue.
I have a cell that says headcount, so you input the headcount for that site, from there there is another cell F3 which has the following formula in it: -
=IF(C3<10,"Cloud < 10 users",IF(C3<25,"X-Small 15-25 users (or SfB Gateway or large data storage",IF(C3<50,"Small 25-50 users",IF(C3<100,"Medium 50-100 users",IF(C3<200,"Large > 100 users","X-Large> 200 (plus big data)"))))
)
Cell G3 then has the following formula in it: -
=IF(F3="Cloud < 10 users","Not Required",IF(F3="X-Small 15-25 users (or SfB Gateway or large data storage","Not Required",IF(F3="Small 25-50 users","1 UCS - 8 SAS HDD",IF(F3="Medium 50-100 users","2 UCS - 8 SAS HDD in each Host",IF(F3="Large > 100 users","2 UCS - 8 SAS HDD in Host 1, & 6 SSD HDD in Host 2",IF(F3="X-Large> 200 (plus big data)","2 UCS - 8 SAS HDD in Host 1, & 8 SSD HDD in Host 2"))
))))
So the trouble I have with what you've provided is, if someone amends the headcount, it will automatically change whats in J3 to a different option. I dont want it to do that. I want it to copy the values based upon when we initiated the =IF(H3="Yes",TODAY(),"") and not dynamically update if the headcount is changed.
Sorry this is complicated, I hope you understand
So at the moment with what you have provided, it will copy whatever is in G3 to J2 which is fine. However because the formula provided is also linked to another cell which is how it get populated.