CHAR(nb)
- where Nb is the number from 1 to 255.
Description
- This function gives the ANSI chracters for given Number.
- Function CHAR is used to give the spcific character for the number.
- Also the number is between 1 to 255.The Nb can be a number directly or indirectly like cell reference.
- The character is from the character set using in our system.
- gives
- Failed to parse (syntax error): {\displaystyle =COMPLEX(5,2,"j")} gives
Examples
Complex(RN,IN,SF) | RN | IN | SF | RESULT |
---|---|---|---|---|
Complex(5,6) | 5 | 6 | 5+6i | |
Complex(5,2,"j") | 5 | 2 | j | 5+6j |
Complex(2,0,"i") | 2 | 0 | i | 2 |
Complex(0,-4,i) | 0 | 4 | i | 4i |
Complex(5,"j") | 5 | j | Error |