Difference between revisions of "Manuals/calci/CHAR"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | <div style="font-size:30px">'''CHAR( | + | <div style="font-size:30px">'''CHAR(Nb)'''</div><br/> |
− | *where Nb is the number from 1 to | + | *where Nb is the number from 1 to infinity. |
==Description== | ==Description== | ||
− | *This function gives the ANSI | + | *This function gives the ANSI characters for given Number. |
− | * | + | *CHAR()gives a specific character for a number. |
− | *Also the number is between 1 to | + | *Also the number is between 1 to infinity. |
− | *The character is from the character set | + | *The Nb can be a number directly or indirectly like cell reference. |
+ | *The character is from the character set used in our system. | ||
− | ** | + | **CHAR(65) |
− | ** | + | **CHAR(B5), where B5 is the cell number |
+ | **CHAR(100) | ||
==Examples== | ==Examples== |
Revision as of 03:09, 12 November 2013
CHAR(Nb)
- where Nb is the number from 1 to infinity.
Description
- This function gives the ANSI characters for given Number.
- CHAR()gives a specific character for a number.
- Also the number is between 1 to infinity.
- The Nb can be a number directly or indirectly like cell reference.
- The character is from the character set used in our system.
- CHAR(65)
- CHAR(B5), where B5 is the cell number
- CHAR(100)
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 |