Im struggling with a formula and I can not find the answer on google.
I have a VLOOKUP funktion that I want to write out depending if some cells have values or not.
the VLOOKUP get a watt(electrical) value for a fixture. and I want this to depend on how many fixtures I patch.
so:
G8 will get VLOOKUP(F8;'Fixture List'!A:B;2;0)
But I want it to write out The VLOOKUP value as 0,00 if J8+L8+N8+P8 is blank.
And when Only J8 has a value I want it to write VLOOKUP value as it is
When J8+L8 has a value I want VLOOKUP value *2
when J8+L8+N8 has a value I want VLOOKUP value *3
when J8+L8+N8+P8 has a value I want VLOOKIP vale *4
I get it to work for only J8 with formulra:
=IF(ISNUMBER(J8);VLOOKUP(F8;'Fixture List'!A:B;2;0);0)
Help me please. I can not get around it.
I have a VLOOKUP funktion that I want to write out depending if some cells have values or not.
the VLOOKUP get a watt(electrical) value for a fixture. and I want this to depend on how many fixtures I patch.
so:
G8 will get VLOOKUP(F8;'Fixture List'!A:B;2;0)
But I want it to write out The VLOOKUP value as 0,00 if J8+L8+N8+P8 is blank.
And when Only J8 has a value I want it to write VLOOKUP value as it is
When J8+L8 has a value I want VLOOKUP value *2
when J8+L8+N8 has a value I want VLOOKUP value *3
when J8+L8+N8+P8 has a value I want VLOOKIP vale *4
I get it to work for only J8 with formulra:
=IF(ISNUMBER(J8);VLOOKUP(F8;'Fixture List'!A:B;2;0);0)
Help me please. I can not get around it.