COMBINING FORULAS

Jewells0905

New Member
Joined
Mar 10, 2024
Messages
29
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi,
I am having so much trouble learning how to properly combine multiple functions/arguments into one functioning formula. There are three types of problems in Columns A:D, NULL values, #N/A values, and blank cells. I need all of these to be turned into #N/A values, and have been directed to do so using the IFS function. Here is the formula I am trying, but I keep getting a parse error with this. =IFS(ISNA(A2), OR(ISBLANK(A2), (ISERR(A2), "#N/A"))). I have also tried =IFS(OR(ISNA(A2), (ISBLANK(A2), (ISERR(A2), "#N/A"))), with the same error. And =IFS(OR(ISNA(A2), ISBLANK(A2), ISERR(A2), "#N/A")), which has given me the #N/A error, stating not enough arguments. I am not able to upload a mini sheet, but below is a shot of part of the sheet I am working with. Any help is appreciated.
Food NameScientific NameGroupSubgroupFood NameScientific NameGroupSubgroup
AngelicaAngelica keiskeiHerbs and SpicesHerbs#N/A
Savoy cabbageBrassica oleracea var. sabaudaVegetablesCabbages
Silver lindenTilia argenteaHerbs and SpicesHerbs
Kiwi#N/AFruitsTropical fruits
Allium (Onion)AlliumVegetablesOnion-family vegetables
Garden onionAllium cepa#N/A
LeekAllium porrumVegetablesOnion-family vegetables
GarlicAllium sativumHerbs and SpicesHerbs
ChivesAllium schoenoprasumHerbs and SpicesHerbs
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Check this and revert -

Excel Formula:
=IFS(OR(ISNA(A2),ISBLANK(A2),ISERR(A2)),"#N/A",True,A2)
 
Upvote 0
Hi

The formula spits out #N/A text and not #NA error.
Mappe8
ABCDEFGHI
1Food NameScientific NameGroupSubgroupFood NameScientific NameGroupSubgroup
2AngelicaAngelica keiskeiHerbs and SpicesHerbsAngelicaAngelica keiskeiHerbs and SpicesHerbs
3Savoy cabbageBrassica oleracea var. sabaudaVegetablesCabbagesSavoy cabbageBrassica oleracea var. sabaudaVegetablesCabbages
4Silver lindenTilia argenteaHerbs and SpicesHerbsSilver lindenTilia argenteaHerbs and SpicesHerbs
5Kiwi#N/AFruitsTropical fruitsKiwi#N/AFruitsTropical fruits
6Allium (Onion)AlliumVegetablesOnion-family vegetablesAllium (Onion)AlliumVegetablesOnion-family vegetables
7Garden onionAllium cepa#N/AGarden onionAllium cepa#N/A#N/A
8LeekAllium porrumVegetablesOnion-family vegetablesLeekAllium porrumVegetablesOnion-family vegetables
9GarlicAllium sativumHerbs and SpicesHerbsGarlicAllium sativumHerbs and SpicesHerbs
10ChivesAllium schoenoprasumHerbs and SpicesHerbsChivesAllium schoenoprasumHerbs and SpicesHerbs
Tabelle1
Cell Formulas
RangeFormula
F2:I10F2=IF(ISTEXT(A2),A2,"#N/A")
 
Upvote 0
This one is not throwing an error, but is giving me the same results as this formula that I had tried as well, it is just populating all the food names from Column A regardless whether it should be a #N/A.

=IF(OR(A2="NULL", ISNA(A2), ISBLANK(A2)), "#N/A", A2)
 
Upvote 0
Have you tried the formula I gave you in #2

Excel Formula:
=IFS(OR(ISNA(A2),ISBLANK(A2),ISERR(A2)),"#N/A",True,A2)
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,976
Members
449,095
Latest member
Mr Hughes

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