Exp - 12 : Excel Functions -> Financial, Logical, Text etc. for COPA Trade
In Excel, I have learned some functions, these are
Financial Functions:
1) PMT
Ex: =PMT(10%,3,10000) Returns -402.11
2) Rate
Ex: = RATE (6, -200, 1000, 0.1)
= 5%
Logical Functions:
1) And
Ex: =AND(m>25,m<50)
here m value must greater than 25 and less than 50.
2) OR
Ex: =OR(m>25,x>50)
here m value greater than 25 or x value greater than 50.
3) NOT
Ex: =NOT(x>25)
here x value is not greater than 25
Text Functions
1) UPPER
Ex: =UPPER("vesrn")
Returns VESRN
2) TRIM
Ex: =TRIM(" vesrn ")
Returns vesrn
3) PROPER
Ex: =PROPER("vesrn technologies")
Returns Vesrn Technologies