Without knowing the layout of your data, it's impossible for use to offer any solutions.You said "I need a calendar that, each day, will sum attendance data "Calendars don't "sum" anything. Calendars show dates, days, appointments, etc.Do you mean you need a list such as this? A B 1 1/1/2014 {Sum ofRead more
Without knowing the layout of your data, it’s impossible for use to offer any solutions.
You said “I need a calendar that, each day, will sum attendance data “
Calendars don’t “sum” anything. Calendars show dates, days, appointments, etc.
Do you mean you need a list such as this?
A B
1 1/1/2014 {Sum of data from 11/2/2013}
2 1/2/2014 {Sum of data from 11/3/2013}
3 1/3/2014 {Sum of data from 11/4/2013}
If that is what you are looking for, we’ll need some details as to where the data to be summed will be found.
Right-click the sheet tab, and select Unprotect Sheet… from the context menu. On the Review tab, in the Changes group, click Unprotect Sheet. On the Home tab, in the Cells group, click Format, and select Unprotect Sheet from the drop-down menu.
Right-click the sheet tab, and select Unprotect Sheet… from the context menu. On the Review tab, in the Changes group, click Unprotect Sheet. On the Home tab, in the Cells group, click Format, and select Unprotect Sheet from the drop-down menu.
I don't do much with Form Controls, but perhaps you can use the Worksheet_Change event to accomplish your goal.The Worksheet_Change event fires whenever a change is made to the worksheet in which it resides.A Worksheet_Change event looks something like this:Private Sub Worksheet_Change(ByVal TargetRead more
I don’t do much with Form Controls, but perhaps you can use the Worksheet_Change event to accomplish your goal.
The Worksheet_Change event fires whenever a change is made to the worksheet in which it resides.
A Worksheet_Change event looks something like this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$2" Then
MsgBox "Cell B2 Was Changed!"
End If
End Sub
Obviously you would change the MsgBox instruction to show your Form Control.
To check for different values in B2, you would use more If’s:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$2" Then
If Target = "Apple" Then
MsgBox "B2 Now Shows Apple"
End If
If Target = "Grape" Then
MsgBox "B2 Now Shows Grape"
End If
End If
End Sub
Your looking for a Custom Format: On the Format menu, click Cells. On the Number tab, click Custom from the Category list. In the Type box overwrite what ever is in there, probably the word General with: DD/MM/YYYY click OK
Your looking for a Custom Format:
On the Format menu, click Cells.
On the Number tab, click Custom from the Category list.
In the Type box overwrite what ever is in there, probably the word General
with:
You are going to have to make some changes at home before you'll be able to make the VoIP phone work. You metion having a 2wire device. This will be a "combo" unit that is a modem/router/wireless AP all wrapped up in one device. If I'm correct, you'll only ever be able to daisychain your second routRead more
You are going to have to make some changes at home before you’ll be able to make the VoIP phone work.
You metion having a 2wire device. This will be a “combo” unit that is a modem/router/wireless AP all wrapped up in one device. If I’m correct, you’ll only ever be able to daisychain your second router to the 2wire.
I’ve never played with VoIP at home so I know nothing about that side of it (but I know all about the Enterprise side of VoIP because we use it at work) but if wanderer is right, then your VoIP probably still won’t work even if you have it plugged into the 2wire with a network cable.
From the sounds of it, the router you got from your company needs to be the unit connected directly to the internet.
If this is true, you need to get a modem that is nothing else but a modem. Then you would plug your company supplied router into it.
Since you’re using ADSL, I suspect you have phone outlets all over your house. There’s nothing stopping you from plugging your ADSL modem in upstairs where you need the VoIP phone. Then, plug your company supplied router into it. You could then bridge the 2wire device to that router and set it up downstairs and connect your PC down there to it.
This solves all your problems but is dependent on you getting a modem from your ISP that isn’t a combo unit. Some ISP’s, like mine, supply that equipment. Other’s charge the customer for it. With luck, your ISP is like mine. If not, you might be able to claim it as an expense at work and have your company pay for it since it will be required to make the VoIP phone work.
guest network should be segmented from the business network. It should have its own printer. most small offices don't provide guest internet access or if they do its a completely different network than the business network. at least those that know better. I have seen guest networks tied to businessRead more
guest network should be segmented from the business network.
It should have its own printer.
most small offices don’t provide guest internet access or if they do its a completely different network than the business network.
at least those that know better. I have seen guest networks tied to business networks.
Another way of accomplishing this is with two routers. Guest router is the main router. Business router is off the guest router. Both get internet but guest can’t access business.
Best way to accomplish this is to use a vlan switch off the main router.
You set the internet connected port going to the router for both business and guess network. Guest network router off the switch gives dhcp/internet to all guests. Guest vlan has no contact with business network.
Note that the main router is not a wifi router just a plain router. If you do wifi to business then you defeated the purpose. If you want wifi for business then you need three routers; main, business router and guest router.
You would still need to put a printer on the guest network as well as provide them with the printer install.
You may need to run more than 1 profile.TCP/IP Manangerhttps://www.softpedia.com/get/Offic...https://sourceforge.net/projects/tc...https://tcpipmanager.sourceforge.io/
Generally, connecting a router to another router is not recommended, though it is possible. To answer your question, read this: http://www.speedguide.net/articles/...
Generally, connecting a router to another router is not recommended, though it is possible. To answer your question, read this: http://www.speedguide.net/articles/…
You wrote: "I have an "Application" setting created for FTP within the modem, like it was on the old modem." Exactly what does that mean? That modem is basically a combination modem/router. Is the laptop connected by cat5 or is it wireless? Make sure that it's not in the DMZ. What IP address does itRead more
You wrote:
“I have an “Application” setting created for FTP within the modem, like it was on the old modem.”
Exactly what does that mean? That modem is basically a combination modem/router. Is the laptop connected by cat5 or is it wireless? Make sure that it’s not in the DMZ. What IP address does it have & what IP does the NAS have? If the laptop is connected wirelessly, try wired.
How Do I Create A Daily Rolling Calendar In Excel?
Without knowing the layout of your data, it's impossible for use to offer any solutions.You said "I need a calendar that, each day, will sum attendance data "Calendars don't "sum" anything. Calendars show dates, days, appointments, etc.Do you mean you need a list such as this? A B 1 1/1/2014 {Sum ofRead more
You said “I need a calendar that, each day, will sum attendance data “
Calendars don’t “sum” anything. Calendars show dates, days, appointments, etc.
Do you mean you need a list such as this?
A B 1 1/1/2014 {Sum of data from 11/2/2013} 2 1/2/2014 {Sum of data from 11/3/2013} 3 1/3/2014 {Sum of data from 11/4/2013}If that is what you are looking for, we’ll need some details as to where the data to be summed will be found.
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.
Excel AddIn – Rowliner (Pearson)
Right-click the sheet tab, and select Unprotect Sheet… from the context menu. On the Review tab, in the Changes group, click Unprotect Sheet. On the Home tab, in the Cells group, click Format, and select Unprotect Sheet from the drop-down menu.
Right-click the sheet tab, and select Unprotect Sheet… from the context menu. On the Review tab, in the Changes group, click Unprotect Sheet. On the Home tab, in the Cells group, click Format, and select Unprotect Sheet from the drop-down menu.
See lessExcel 2010 | Check Box (Form Control) Appear/Disappear
I don't do much with Form Controls, but perhaps you can use the Worksheet_Change event to accomplish your goal.The Worksheet_Change event fires whenever a change is made to the worksheet in which it resides.A Worksheet_Change event looks something like this:Private Sub Worksheet_Change(ByVal TargetRead more
The Worksheet_Change event fires whenever a change is made to the worksheet in which it resides.
A Worksheet_Change event looks something like this:
Obviously you would change the MsgBox instruction to show your Form Control.
To check for different values in B2, you would use more If’s:
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$B$2" Then If Target = "Apple" Then MsgBox "B2 Now Shows Apple" End If If Target = "Grape" Then MsgBox "B2 Now Shows Grape" End If End If End SubI hope that helps.
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.
Convert Date Ddmmyy To Dd/Mm/Yy In Excel
Your looking for a Custom Format: On the Format menu, click Cells. On the Number tab, click Custom from the Category list. In the Type box overwrite what ever is in there, probably the word General with: DD/MM/YYYY click OK
Your looking for a Custom Format:
On the Format menu, click Cells.
On the Number tab, click Custom from the Category list.
In the Type box overwrite what ever is in there, probably the word General
with:
DD/MM/YYYY
click OK
See lessVOIP Phone/Router Set-Up Complication
You are going to have to make some changes at home before you'll be able to make the VoIP phone work. You metion having a 2wire device. This will be a "combo" unit that is a modem/router/wireless AP all wrapped up in one device. If I'm correct, you'll only ever be able to daisychain your second routRead more
You are going to have to make some changes at home before you’ll be able to make the VoIP phone work.
You metion having a 2wire device. This will be a “combo” unit that is a modem/router/wireless AP all wrapped up in one device. If I’m correct, you’ll only ever be able to daisychain your second router to the 2wire.
I’ve never played with VoIP at home so I know nothing about that side of it (but I know all about the Enterprise side of VoIP because we use it at work) but if wanderer is right, then your VoIP probably still won’t work even if you have it plugged into the 2wire with a network cable.
From the sounds of it, the router you got from your company needs to be the unit connected directly to the internet.
If this is true, you need to get a modem that is nothing else but a modem. Then you would plug your company supplied router into it.
Since you’re using ADSL, I suspect you have phone outlets all over your house. There’s nothing stopping you from plugging your ADSL modem in upstairs where you need the VoIP phone. Then, plug your company supplied router into it. You could then bridge the 2wire device to that router and set it up downstairs and connect your PC down there to it.
This solves all your problems but is dependent on you getting a modem from your ISP that isn’t a combo unit. Some ISP’s, like mine, supply that equipment. Other’s charge the customer for it. With luck, your ISP is like mine. If not, you might be able to claim it as an expense at work and have your company pay for it since it will be required to make the VoIP phone work.
See lessPrinting From Firewall DMZ To Internal LAN IP Printer??
guest network should be segmented from the business network. It should have its own printer. most small offices don't provide guest internet access or if they do its a completely different network than the business network. at least those that know better. I have seen guest networks tied to businessRead more
guest network should be segmented from the business network.
It should have its own printer.
most small offices don’t provide guest internet access or if they do its a completely different network than the business network.
at least those that know better. I have seen guest networks tied to business networks.
Another way of accomplishing this is with two routers. Guest router is the main router. Business router is off the guest router. Both get internet but guest can’t access business.
Best way to accomplish this is to use a vlan switch off the main router.
You set the internet connected port going to the router for both business and guess network. Guest network router off the switch gives dhcp/internet to all guests. Guest vlan has no contact with business network.
Note that the main router is not a wifi router just a plain router. If you do wifi to business then you defeated the purpose. If you want wifi for business then you need three routers; main, business router and guest router.
You would still need to put a printer on the guest network as well as provide them with the printer install.
See lessLan & Wifi Networks Work Parallel.
You may need to run more than 1 profile.TCP/IP Manangerhttps://www.softpedia.com/get/Offic...https://sourceforge.net/projects/tc...https://tcpipmanager.sourceforge.io/
TCP/IP Mananger
https://www.softpedia.com/get/Offic…
https://sourceforge.net/projects/tc…
https://tcpipmanager.sourceforge.io/
Intermittent ERR_CONNECTION_RESET Problem On All Browsers
Try a USB network adapter. If that works, you have a bad NIC.
Try a USB network adapter. If that works, you have a bad NIC.
See lessHow Configure TD-W8950ND As Access Point
Generally, connecting a router to another router is not recommended, though it is possible. To answer your question, read this: http://www.speedguide.net/articles/...
FTP Error 421 Login Incorrect
You wrote: "I have an "Application" setting created for FTP within the modem, like it was on the old modem." Exactly what does that mean? That modem is basically a combination modem/router. Is the laptop connected by cat5 or is it wireless? Make sure that it's not in the DMZ. What IP address does itRead more
You wrote:
“I have an “Application” setting created for FTP within the modem, like it was on the old modem.”
Exactly what does that mean? That modem is basically a combination modem/router. Is the laptop connected by cat5 or is it wireless? Make sure that it’s not in the DMZ. What IP address does it have & what IP does the NAS have? If the laptop is connected wirelessly, try wired.
See less