Share this Post

Formula FunctionUseExample
TodayReturns the todays date=Today( )
WeekdayReturns the serial number of days in week
(1 for Sunday and 7 for Saturday)
= weekday(type current date)
DateReturns the serial number of a particular date=Date(Year, Month, Day) #(2023,09,21)
MonthReturn the month of the specified data=Month(Select the date)
yearReturn the year of the specified data=Year(Select the date)
DayReturn the Day of the specified data=Day(Select the date)
NowReturn the current date and time   =Now( )
TimeReturn the serial number of particular time=Time(Hour,Minute,Second)#(10,20,55)
HourReturn the hour for a time=Hour(select time)
MinuteReturn the Minute for a time= Minute (select time)
SecondReturn the Second for a time= Second (select time)
IfSpecifies a logic test to perform=if(Select logic, type value if  true, type value if false)
SQRTReturns the positive square root=SQRT(Number)
SumTo Add the arguments=Sum(number1,number2,  …..)
ModThis function returns the remainder left over after a division operation.=Mod(number, Divisor)   #Mod(15,2)Return 1 answer
AverageReturns the average  of arguments.=Average(number1, number2, number3)
Left Returns the left side of character from the selected text.=Left(select Text, Num_chars)
RightReturns the Right side of character from the selected text.= Right(select Text, Num_chars)
UpperCoverts character in uppercase=Upper(select text)
LowerCoverts character in lowercase.=Lower(select text)
ReplaceReplace charters with other characters.=Replace(Select old text, Start_number, number of char, New text)
MidReturns a specific number of characters from a text string at the position you specify=Mid(Select text, Start_num, Num_char)
LenReturns the number of characters in a text string.=Len(Select Text)
ProperCapitalize the first letter in each word of a text.=Proper(select text)
ConcatenateTo join the two or more string.=Concatenate(text1, text2)

Share this Post

Leave a Reply

Your email address will not be published. Required fields are marked *