Forum Discussion
AttilaHetey
Oct 16, 2023Copper Contributor
Excel formula help
Hey, I have the following table. A B C D E F G H I J K L M N IP Address CIDR Netmask Start IP End IP Broadcast IP # of Hosts 1st OCT 2st OCT 3st OCT IP Start IP ...
- Oct 16, 2023
On Excel 365, and if I understood the logic correctly, that could be
=XLOOKUP( 1, (TEXTBEFORE($A12,".",3) = TEXTBEFORE($D$3:$D$8,".",3)) * (--TEXTAFTER($A12,".",3) >= --TEXTAFTER($D$3:$D$8,".",3)) * (--TEXTAFTER($A12,".",3) <= --TEXTAFTER($E$3:$E$8,".",3)), $N$3:$N$8, "no such" )
HansVogelaar
Oct 16, 2023MVP
Will the CIDR never be less than 24? It it were less than 24, the first three octets of the end IP could be different from that of the start IP.
- AttilaHeteyOct 17, 2023Copper ContributorSergei have answered with a working code, but thank you also for looking into this mate.