- Weatherford Knowledge Base
- P#
- Neighborhood Functions
-
Getting Started
-
Customer Training
-
Customer Success
-
Updates
-
Production Optimization
-
Artificial Lift Optimization
-
Completion Optimization
-
Environmental, Social & Governance
-
Development, Acquisition & Divestitures
-
Enhanced Oil Recovery
-
Admin
-
P#
- Getting Started with P#
- Data Cleansing
- String Functions
- Scenario Functions
- Regression Functions
- Placeholder Functions
- Mathematical Functions
- Logic Functions
- Entities Function
- Moving Window Functions
- Time and Date Functions
- Statistical Functions
- Economic Functions
- Data Handling
- Additional Functions
- Directional Functions
- Machine Learning Functions
- DCA Functions
- Neighborhood Functions
-
Packages
DataGridCellValue()
Returns specified data grid cell first value, value converted to a specified unit, index, index converted to a specified unit.
Syntax
DataGridCellValue(string dataGridName, string cellName)
DataGridCellValue(string dataGridName, string cellName, double dataValueIndex)
DataGridCellValue(string dataGridName, string cellName, string unitName)
DataGridCellValue(string dataGridName, string cellName, string unitName,
double dataValueIndex)
- dataGridName: name of data grid
- cellName: name of cell
- DataValueIndex: value Index
- unitName: unit if available
Example
DataGridCellValue("Area 51", "Field 17")
DataGridCellValue("Area 51", CurrentDataGridCell("Area 51"))
DataGridCellValue("Area 51", "Field 17", 0)
DataGridCellValue("Area 51", CurrentDataGridCell("Area 51"), 0)
DataGridCellValue("Area 51", "Field 17", "m2")
DataGridCellValue("Area 51", CurrentDataGridCell("Area 51"), "m2")
DataGridCellValue("Area 51", "Field 17", "m2", 0)
DataGridCellValue("Area 51", CurrentDataGridCell("Area 51"), "m2", 0)