Reputation: 1
I want when I write "Yes" in "Count" column of "IP_Details" tab, it will automatically add (+1) to the "Used IP" column of "Dashboard" tab. So when I am using any IP, I don't need to edit in the Dashboard for that entry.
Here I have attached screenshots of this issue.
Upvotes: 0
Views: 37
Reputation: 37430
Under Used IP
you can enter formula: =COUNTIF(IP_details!D2:D100,"=yes")
, under Remaining IP
you can enter Total IP
minus result of given formula.
Apllying OP's remarks below (coments), here's modified answer:
=COUNTIF(Public_IP!D2:D100,"=yes") + COUNTIF(Private_IP!D2:D100,"=yes")
Upvotes: 1