IF AND formula

maywal

New Member
Joined
Dec 19, 2016
Messages
29
I am sure I am making a very simple mistake but can't seem to find the solution.

I am using this formula:

=IFERROR(IF($F3="GTS",$M3,(IF(AND(H3="Manual",F3="GTS"),I3,""))),"")

I need to differentiate between manual entry and formulated inputs.

Column H has the option to select 'manual' for manual entries of data, and I then want to copy the manual entry into the new box if it also equals 'GTS' in column F.

On other occasions formulas will feed off of M3 were fees have been standardised and therefore I need it to differentiate the two.

Assuming this is the right formula, am I writing this in the wrong order?

Any help would be much appreciated in understanding how this works.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
maywal, Good afternoon.

Try to use:
Code:
[B]=IF($F3="GTS", IF(H3="Manual", I3, M3), "")[/B]

Is that what you want?

I hope it helps.
 
Upvote 0
=IF(AND(H3="Manual",F3="GTS"),I3,IF(F3="GTS",M3,""))

The one above works, just tweaked yours a little. I was making it too complicated clearly.

Thank you!
 
Upvote 0

Forum statistics

Threads
1,215,373
Messages
6,124,545
Members
449,169
Latest member
mm424

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