Search found 11 matches
- Thu Jan 25, 2018 9:41 am
- Forum: Main Forum
- Topic: Family Members with Different Phone# but Same Email
- Replies: 3
- Views: 7326
Re: Family Members with Different Phone# but Same Email
Thanks for the info, is there a direct link to feature requests rather than doing it inside the program?
- Thu Jan 25, 2018 7:49 am
- Forum: Main Forum
- Topic: Family Members with Different Phone# but Same Email
- Replies: 3
- Views: 7326
Family Members with Different Phone# but Same Email
When entering family members is there a way to make everyone have the same email but different numbers? -I know about the box in the "Email and Phone" section that says "Same for Entire Family" but when you click that it gives everyone the same wireless and work numbers as well. I'm kind of curious ...
- Mon Aug 29, 2016 12:55 pm
- Forum: Main Forum
- Topic: Query showing patients by specific provider?
- Replies: 4
- Views: 11710
Re: Query showing patients by specific provider?
Writing queries is complicated, but can be done with a bit of practice. I'm sure there's lots of tutorials out there on how to do things. That being said, for your particular case you'd want an INNER JOIN on the provider table using the patient's PriProv and the provider's ProvNum. Essentially, it ...
- Mon Aug 29, 2016 8:49 am
- Forum: Main Forum
- Topic: Query showing patients by specific provider?
- Replies: 4
- Views: 11710
Re: Query showing patients by specific provider?
I mean it's basically this but I want it to select a specific provider? I keep getting all kinds of errors when trying to write the code: SELECT patient.LName,patient.FName,patient.MiddleI,patient.Address,patient.Address2,patient.City,patient.State,patient.Zip,patient.PriProv FROM patient So instead...
- Mon Aug 29, 2016 8:02 am
- Forum: Main Forum
- Topic: Query showing patients by specific provider?
- Replies: 4
- Views: 11710
Query showing patients by specific provider?
I wish there was a like a key somewhere to see all the commands you could input for the queries. I'm looking for a query to show patients names and addresses for a specific doctor and I seem to having a hard time putting one together. The kicker is the doc has 2 profiles as Dr. T/Dr. T 2. I'd love t...
- Wed Aug 24, 2016 11:18 am
- Forum: Main Forum
- Topic: Editing Tooth Surface buttons?
- Replies: 1
- Views: 5510
Editing Tooth Surface buttons?

Can you remove a tooth surface button from the chart? I'd like to get rid of V
- Thu Jun 16, 2016 6:03 am
- Forum: Main Forum
- Topic: Insurance Carrier list printed
- Replies: 8
- Views: 22299
Re: Insurance Carrier list printed
If you combine both queries you can get all the info: SELECT carrier.CarrierName, COUNT(DISTINCT p.PatNum) AS 'Patients',carrier.Address, carrier.Address2, carrier.City, carrier.State, carrier.Zip, carrier.Phone, carrier.ElectID FROM carrier INNER JOIN insplan ip ON carrier.CarrierNum=ip.CarrierNum...
- Thu Jun 16, 2016 6:01 am
- Forum: Main Forum
- Topic: Insurance Carrier list printed
- Replies: 8
- Views: 22299
Re: Insurance Carrier list printed
I saw that one in the examples already, I appreciate all the help but If I could combine that query and one that adds the carrier info it'd be great but I'm having a hard time writing this sql. It's a bit of a learning curve if you havent done much with it. I thought I could just add carrier.address...
- Wed Jun 15, 2016 1:55 pm
- Forum: Main Forum
- Topic: Insurance Carrier list printed
- Replies: 8
- Views: 22299
Re: Insurance Carrier list printed
That list just lists out each patient. I just want the number in each like its listed in the lists/insurance carriers
- Wed Jun 15, 2016 1:32 pm
- Forum: Main Forum
- Topic: Insurance Carrier list printed
- Replies: 8
- Views: 22299
Re: Insurance Carrier list printed
Almost perfect but I also need the number of ppl on each carrier as well
- Wed Jun 15, 2016 11:02 am
- Forum: Main Forum
- Topic: Insurance Carrier list printed
- Replies: 8
- Views: 22299
Insurance Carrier list printed
Is there a way to get the Insurance carrier list printed? maybe by a query?
Basically if you select list at the top then insurance carriers I need that list printed out and can't find a query that lists this..
Basically if you select list at the top then insurance carriers I need that list printed out and can't find a query that lists this..