Search and If/Or

calliemulv

New Member
Joined
Feb 23, 2018
Messages
8
Hello!


I need help with an automation I am trying to build through a formula. What I want to happen is in R3, the formula would look to Q3 as the first step. If Q3 says "GIA," then run formula 1; If Q3 says "COA," then look to F3. If F3 says "Off" in the field at all, run formula 2; If Q3 says "COA," then look to F3. If F3 says "Parents" in the field at all, run formula 3; If Q3 says "COA," then look to F3. If F3 does not say "Off" or "Parents," then run formula 4.


Basically:
R3 = If Q3 is GIA, "ROUND((P3+S3)/F3,2);" if Q3 is COA, look for Off in F3, if found "ROUND((P3+S3)/(F3+2982),2)" OR look for Parents in F3, if found "ROUND((P3+S3)/(F3+2838),2)" OR "ROUND((P3+S3)/(F3+2568),2)"


Formula 1 (GIA): ROUND((P3+S3)/F3,2)
Formula 2 (COA + Off): ROUND((P3+S3)/(F3+2982),2)
Formula 3 (COA + Parents): ROUND((P3+S3)/(F3+2838),2)
Formula 4 (COA + not "Off" or "Parents"): ROUND((P3+S3)/(F3+2568),2)


I have attached the spreadsheet I'm working with.


https://drive.google.com/file/d/1daCCUSFw7nDUZJh5El16yEF2CpHIhsjm/view?usp=sharing


Thank you!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Hi,

Do you mean E3 rather than F3, cause F3 is a Number.
 
Upvote 0
Thanks for clarifying.

Try either one of the 2 formulas below, they're essentially the same, just written differently.

Since some of your "drop down" list is from an external source, my testing was limited.

=ROUND((P3+S3)/(F3+IF(Q3="GIA",0,IF(ISNUMBER(SEARCH("Off",E3)),2982,IF(ISNUMBER(SEARCH("Parents",E3)),2838,2568)))),2)

=ROUND((P3+S3)/(F3+IF(Q3="GIA",0,IF(COUNTIF(E3,"*Off*"),2982,IF(COUNTIF(E3,"*Parents*"),2838,2568)))),2)
 
Last edited:
Upvote 0
This is perfect - thank you!!

Thanks for clarifying.

Try either one of the 2 formulas below, they're essentially the same, just written differently.

Since some of your "drop down" list is from an external source, my testing was limited.

=ROUND((P3+S3)/(F3+IF(Q3="GIA",0,IF(ISNUMBER(SEARCH("Off",E3)),2982,IF(ISNUMBER(SEARCH("Parents",E3)),2838,2568)))),2)

=ROUND((P3+S3)/(F3+IF(Q3="GIA",0,IF(COUNTIF(E3,"*Off*"),2982,IF(COUNTIF(E3,"*Parents*"),2838,2568)))),2)
 
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,223,794
Messages
6,174,637
Members
452,575
Latest member
Fstick546

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