Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Read and Write from GeoSCADA database from/to Excel sheet

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Read and Write from GeoSCADA database from/to Excel sheet
Options
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
308
AndrewScott
Admiral AndrewScott
97
BevanWeiss
Spock BevanWeiss
91
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
37
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
Mehdi_Sajjadi
Lieutenant JG Mehdi_Sajjadi
Lieutenant JG

Posted: ‎2024-11-27 06:41 PM

0 Likes
2
540
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-27 06:41 PM

Read and Write from GeoSCADA database from/to Excel sheet

Hi

 

I wanted to fill/change/set the classes and aggregated properties used in GeoSCADA by using an Excel sheet and VBA macros. I can handle the Excel sheet side, but I am quite unaware of how I can access the GeoSCADA database to manipulate it. 

For example, I want to assign DNP3 points using an Excel sheet. I want to read the DNP3 point number from SCADA to an Excel sheet or write new ones from Excel to GeoSCADA. 

 

I appreciate any idea of how I can change the values of the database schema. Especially using an Excel sheet.

Labels
  • Labels:
  • DNP3
  • Logic
  • RTU
  • SCADA
  • Scripting
  • ViewX
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-11-29 02:09 AM

1 Like
0
489
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-29 02:09 AM

This sample spreadsheet configuration tool may be helpful - a ready-built way to drive configuration into Geo SCADA from Excel.

 

https://community.se.com/t5/Geo-SCADA-Knowledge-Base/Tools-amp-Samples/ba-p/279123#toc-hId--77672493...

 

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 2
SurprisedEwe1
Ensign SurprisedEwe1
Ensign

Posted: ‎2024-11-28 05:45 PM

1 Like
0
507
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-28 05:45 PM

The "Server Automation" section under "Coding" in the Geo SCADA Help contains the information that you are after.

 

First you'll have to create a connection to the database server using the "ScxV6Server" class then access the objects of the database with the "ScxV6Object" or "ScxV6Objects" classes.

 

An example straight from the Geo SCADA Help is:

Dim Svr As ScxV6DbClient.ScxV6Server

' Connect to the server
Svr = New ScxV6DbClient.ScxV6Server
Svr.Connect("MAIN", "", "")
Dim Obj As ScxV6DbClient.ScxV6Object
Obj = Svr.FindObject("Primary Serial Modbus Channel")
Obj.Property("Retries") = 5

' Disconnect
Svr.Disconnect()

 

The names of the properties (and any methods or aggregates etc.) can be found in the Database Schema - e.g. to set the DNP3 point number the property is "PointNumber". Other properties could be things such as "PointDataClass", "OutstationID", "EngineeringFullScale", "RawZeroScale" etc.

 

Also use the schema to determine the datatype returned by and required by the database and many will be enumerations - e.g. Alarm Severities are used as enumerations where on a base database installation 1 = Low, 334 = Medium, 667 = High and 1000 = Critical

 

Reply

Link copied. Please paste this link to share this article on your social media post.

sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2024-11-29 02:09 AM

1 Like
0
490
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-11-29 02:09 AM

This sample spreadsheet configuration tool may be helpful - a ready-built way to drive configuration into Geo SCADA from Excel.

 

https://community.se.com/t5/Geo-SCADA-Knowledge-Base/Tools-amp-Samples/ba-p/279123#toc-hId--77672493...

 

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of