Class: Google::Apis::SheetsV4::PivotValue
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::PivotValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
The definition of how a value in a pivot table should be calculated.
Instance Attribute Summary collapse
-
#formula ⇒ String
A custom formula to calculate the value.
-
#name ⇒ String
A name to use for the value.
-
#source_column_offset ⇒ Fixnum
The column offset of the source range that this value reads from.
-
#summarize_function ⇒ String
A function to summarize the value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PivotValue
constructor
A new instance of PivotValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PivotValue
Returns a new instance of PivotValue
1676 1677 1678 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1676 def initialize(**args) update!(**args) end |
Instance Attribute Details
#formula ⇒ String
A custom formula to calculate the value. The formula must start
with an =
character.
Corresponds to the JSON property formula
1656 1657 1658 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1656 def formula @formula end |
#name ⇒ String
A name to use for the value. This is only used if formula was set.
Otherwise, the column name is used.
Corresponds to the JSON property name
1650 1651 1652 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1650 def name @name end |
#source_column_offset ⇒ Fixnum
The column offset of the source range that this value reads from.
For example, if the source was C10:E15
, a sourceColumnOffset
of 0
means this value refers to column C
, whereas the offset 1
would
refer to column D
.
Corresponds to the JSON property sourceColumnOffset
1674 1675 1676 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1674 def source_column_offset @source_column_offset end |
#summarize_function ⇒ String
A function to summarize the value.
If formula is set, the only supported values are
SUM and
CUSTOM.
If sourceColumnOffset is set, then CUSTOM
is not supported.
Corresponds to the JSON property summarizeFunction
1666 1667 1668 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1666 def summarize_function @summarize_function end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1681 1682 1683 1684 1685 1686 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 1681 def update!(**args) @name = args[:name] if args.key?(:name) @formula = args[:formula] if args.key?(:formula) @summarize_function = args[:summarize_function] if args.key?(:summarize_function) @source_column_offset = args[:source_column_offset] if args.key?(:source_column_offset) end |