Hi everyone!
I have been working on a general Airtable for a huge team that needs the same field to show a value called “what”. But every team calculates that value in a different way so I did a Nested IF formula that almost worked for every team but didn’t work for Content Demand Team :cry:
Here is the formula I did:
IF(Department="Illustration/Logos",{What},
IF(Department="Content Publishing", {What},
IF(Department="Mockups",{What},
IF(Department="Stock Photo", {What},
IF(Department="Content Operations", {What},
IF(Department="Mockups External Content",{What},
IF(Department="Logos External Content",{What},
IF(Department="Motion Graphics",
IF({Motion To Publish}=1,({%Project}+{%Q&A}),(70+{%Q&A})),
IF(Department="Graphic Design",
IF(AND({Did SC}=1,{Did Assets}=1),
AVERAGE({Assets Performance %}, {SC Performance %}),
IF(AND({Did SC}=1,{Did Assets}=0),{SC Performance %},
IF(AND({Did SC}=0,{Did Assets}=1),{Assets Performance %},
IF(Department="Content Demand",
IF(AND({Roadmap}=1,{Reporte Continuo}=1,{Pry Análisis}=1, {User Voice}=1),
AVERAGE({%UV}, {%Pry Análisis}, {%RC},{%Roadmap}),
IF(AND({Roadmap}=1,{Reporte Continuo}=0,{Pry Análisis}=0, {User Voice}=0),
{%Roadmap},
IF(AND({Roadmap}=0,{Reporte Continuo}=1,{Pry Análisis}=0, {User Voice}=0),
{%RC},
IF(AND({Roadmap}=0,{Reporte Continuo}=0,{Pry Análisis}=1, {User Voice}=0),
{%Pry Análisis},
IF(AND({Roadmap}=0,{Reporte Continuo}=0,{Pry Análisis}=0, {User Voice}=1),
{%UV},
IF(AND({Roadmap}=1,{Reporte Continuo}=1,{Pry Análisis}=0, {User Voice}=0),
AVERAGE({%RC},{%Roadmap}),
IF(AND({Roadmap}=1,{Reporte Continuo}=0,{Pry Análisis}=1, {User Voice}=0),
AVERAGE({%Pry Análisis}, {%Roadmap}),
IF(AND({Roadmap}=1,{Reporte Continuo}=0,{Pry Análisis}=0, {User Voice}=1),
AVERAGE({%UV},{%Roadmap}),
IF(AND({Roadmap}=0,{Reporte Continuo}=1,{Pry Análisis}=1, {User Voice}=0),
AVERAGE( {%Pry Análisis}, {%RC}),
IF(AND({Roadmap}=0,{Reporte Continuo}=1,{Pry Análisis}=0, {User Voice}=1),
AVERAGE({%UV}, {%RC}),
IF(AND({Roadmap}=0,{Reporte Continuo}=0,{Pry Análisis}=1, {User Voice}=1),
AVERAGE({%UV}, {%Pry Análisis}),
IF(AND({Roadmap}=0,{Reporte Continuo}=1,{Pry Análisis}=1, {User Voice}=1),
AVERAGE({%UV}, {%Pry Análisis}, {%RC}),
IF(AND({Roadmap}=1,{Reporte Continuo}=0,{Pry Análisis}=1, {User Voice}=1),
AVERAGE({%UV},{%Pry Análisis},{%Roadmap}),
IF(AND({Roadmap}=1,{Reporte Continuo}=1,{Pry Análisis}=0, {User Voice}=1),
AVERAGE({%UV},{%RC},{%Roadmap}),
IF(AND({Roadmap}=1,{Reporte Continuo}=1,{Pry Análisis}=1, {User Voice}=0),
AVERAGE({%Pry Análisis},{%RC},{%Roadmap})
))))))))))))))))))))))))))))
Any help will be appreciated :grimacing: !