Google_Sheet_Helpers::num2alpha( $n )
Convert number to corresponding excel range.
Source
File: src/integrations/google-sheet/helpers/google-sheet-helpers.php
public function num2alpha( $n ) { for ( $r = ''; $n >= 0; $n = intval( $n / 26 ) - 1 ) { $r = chr( $n % 26 + 0x41 ) . $r; } return $r; }
Expand full source code Collapse full source code View on Github