- Weatherford Knowledge Base
- P#
- Time and Date 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
CurrentScopeIncrement()
Returns the current time increment from the current scope.
Syntax
CurrentScopeIncrement() = Scope Step
Values for the Scope Step are:
-
- EverySecond
- EveryMinute
- EveryFiveMinutes
- EveryFifteenMinutes
- Hourly
- Daily
- Monthly
- Quarterly
- Yearly
Example
CurrentScopeIncrement() = Step Daily
Example
Column "days in scope step" in "d"
If CurrentScopeIncrement() = Step Daily Then
1
ElseIf CurrentScopeIncrement() = Step Monthly Then
DaysInMonth()
ElseIf CurrentScopeIncrement() = Step Yearly Then
365.25
Else
Null()
End If
End Column