Edgar_
Board Regular
- Joined
- Mar 11, 2024
- Messages
- 87
- Office Version
- 2021
- 2016
- Platform
- Windows
I have this array formula that returns a wire size depending on my voltage drop
However, the N function is getting rid of any matches for "1/0","2/0","3/0","4/0" in the tbSecciones table, which means I don't get those wire sizes. Does anyone know workarounds?
Note: I don't really understand the formula very well, so if you can provide me a better approach, I would appreciate it.
Thanks!
EDIT: sorry about the title
Excel Formula:
=INDEX({14,12,10,8,6,4,2,"1/0","2/0","3/0","4/0",250,300,350,400,500,600,750,1000},
MATCH(TRUE,
CHOOSE($C11,
PRODUCT(4, $AL11, $AC11) / PRODUCT((220 / 3^0.5), VLOOKUP(N(IF(
{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19},
{14,12,10,8,6,4,2,"1/0","2/0","3/0","4/0",250,300,350,400,500,600,750,1000}
)), tbSecciones, 2, FALSE)),
PRODUCT(2, $AL11, $AC11) / PRODUCT(220, VLOOKUP(N(IF(
{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19},
{14,12,10,8,6,4,2,"1/0","2/0","3/0","4/0",250,300,350,400,500,600,750,1000}
)), tbSecciones, 2, FALSE)),
PRODUCT(2, 3^0.5, $AL11, $AC11) / (220 * VLOOKUP(N(IF(
{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19},
{14,12,10,8,6,4,2,"1/0","2/0","3/0","4/0",250,300,350,400,500,600,750,1000}
)), tbSecciones, 2, FALSE))
) < 3,0))
However, the N function is getting rid of any matches for "1/0","2/0","3/0","4/0" in the tbSecciones table, which means I don't get those wire sizes. Does anyone know workarounds?
Note: I don't really understand the formula very well, so if you can provide me a better approach, I would appreciate it.
Thanks!
EDIT: sorry about the title
Last edited: