pub enum AggregateOption {
IgnoreNSA,
IgnoreHNSA,
IgnoreENSA,
IgnoreHENSA,
IgnoreNone,
IgnoreH,
IgnoreE,
IgnoreHE,
}Expand description
Parameter for AGGREGATE().
Variants§
IgnoreNSA
Ignore only nested SUBTOTAL and AGGREGATE functions
IgnoreHNSA
Ignore only hidden rows, nested SUBTOTAL and AGGREGATE functions
IgnoreENSA
Ignore only errors, nested SUBTOTAL and AGGREGATE functions
IgnoreHENSA
Ignore hidden rows, errors, nested SUBTOTAL and AGGREGATE functions
IgnoreNone
Ignore nothing
IgnoreH
Ignore only hidden rows
IgnoreE
Ignore only errors
IgnoreHE
Ignore only hidden rows and errors
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AggregateOption
impl RefUnwindSafe for AggregateOption
impl Send for AggregateOption
impl Sync for AggregateOption
impl Unpin for AggregateOption
impl UnsafeUnpin for AggregateOption
impl UnwindSafe for AggregateOption
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more