Thursday, November 21

FORMULAS

Extract Only Date From Date & Time In Excel

Extract Only Date From Date & Time In Excel

FORMULAS, Text
DEFINITION: The TEXT function allow you to change the way a number display by applying formatting to it with format rule. It is useful in lots of situations where you need to display numbers in a more readable format accordingly, or you want to combine numbers with text or symbols. Specially it useful to extract or format a date according to your need.
MID Plus FIND Function To Extract Specific Text

MID Plus FIND Function To Extract Specific Text

FORMULAS, Text
MID FUNCTION: MID function  is a text function which is used to find out strings from any mid part of the sentence in excel. Mid function require the cell reference from which the text need to be extract, start number from which character need to be start , and number of character which need to be extract. FIND FUNCTION : The FIND Function is used to check or return the position of a provided Cell reference text or a character. FIND function is a case sensitive. NOTE: MID function count the space too. So in the result it will include a space too. SYNTAX=MID(Reference Cell, Start Number / Position, Number Of Character to Extract IMPLEMENT: In this example we have used FIND Function Within MID Function to make it dynamic. So whenever w...
IF With OR Function To Get Result From Multiple Criteria

IF With OR Function To Get Result From Multiple Criteria

FORMULAS, Logical
To get the specific output by matching the multiple criteria we can use Logical IF With And Function. The Logical IF used to populate the result if the OR Function result in True or False. The OR Function check the two matching criteria provided to evaluate the condition and result in TRUE or FALSE. Here we are checking that if the student name is Juan or the subject is English the result should be "Selected" else "Not Eligible". We can also provide the reference in place of "Selected" And "Not Eligible". Please check the image below. FORMULA : =IF(OR(A3="Juan",B3="English"),"Selected","Not Eleigible")FORMULA : =IF(OR(A3="Juan",B3="English"), A4,"Not Eleigible")
IF With And Function To Get Result From Multiple Criteria

IF With And Function To Get Result From Multiple Criteria

FORMULAS, Logical
To get the specific output by matching the multiple criteria we can use Logical IF With And Function. The Logical IF used to populate the result if the AND function result in True or False. The AND function check the two matching criteria provided to evaluate the condition and result in TRUE or FALSE. Here we are checking that if the student name is Juan and the subject is English the result should be "Selected" else "Not Eligible". We can also provide the reference in place of "Selected" And "Not Eligible". Please check the image below. FORMULA : =IF(AND(A3="Juan",B3="English"),"Selected","Not Eleigible")FORMULA : =IF(AND(A3="Juan",B3="English"), A4,"Not Eleigible")
WORKDAY.INTL Function To Extract Working Days

WORKDAY.INTL Function To Extract Working Days

Date And Time, FORMULAS
DEFINITION: WORKDAY.INTL Function Required A Valid Date - Days. Other Two Parameter Are Optional. This Function Returns The Working Day For The The Future Or The Past Dates. SYNTAX: =WORKDAY.INTL (START_DATE, DAYS, [WEEKEND], [HOLIDAYS]) Weekend Parameters Is Optional But By Default It Is Set As (Sat-Sun). There Are Many Weekend Days Option Available To Set According To Your Country Based Or Requirement And Those Days Will Be Excluded While Calculating The Working Days. Holidays Parameter Is Optional But If You Set Any Date It Will Be Considered As Holiday. It Will Be Excluded While Calculating The Working Days. Use (+) Number As Days For Future Dates And (-) Number For Past Dates. Set Weekend NumberWeekends Days1Saturday - Sunday2Sunday - Monday3Monday - Tuesday4Tuesd...
WORKDAY Function To Find Working Days

WORKDAY Function To Find Working Days

Date And Time, FORMULAS
DEFINITION: Workday Function Need A Valid Date As Parameter And In Returns. It Return Working Day In Date Serial Format For Future Or Past. To Change The Date Serial Number To A Date You Must Set Format As Date. Workday Function Has Sat-Sun As Default Weekends And It Exclude Weekends And Any Dates Set As Holidays. Use A (+) Number As Days For Future Dates And A (-) Number For Past Dates. Note: This Function Does Not Include The Start Date Day. IMPLEMENT: (1) Parameter Start Date - The Date From Where To Start.(2) Parameter Days - Number Of Working Days After Or Before Start Date.(3) Holidays - [Optional] A List Or A Single Date That Considered As Non-Working Days. You Can Have Some Date Listed In Cells Which You Can Set As Holidays But You must Fix It With Dollar Sign. Ex:- $A$1...
WEEKDAY Function To Extract Day From Date

WEEKDAY Function To Extract Day From Date

Date And Time, FORMULAS
DEFINITION: Weekday Function Returns The Day Of The Week In Numeric Number From A Give Valid Date Or A Date Serial Number. By Default Weekday Returns 1 For Sunday And 7 For Saturday. To Find The Serial Number Of A Date Change The Cell Format To General Of A Cell Which Contain The Valid Date And Try Adding Serial Number In Place Of Date And You Will Get The Same Result. SYNTAX:- =WEEKDAY (SERIAL_NUMBER, [RETURN_TYPE]) Return Type Is optional As It Is In Square Brackets. Any Parameter In Excel Having Square Bracket Is Consider As Optional. Return TypeDescription1Returns A Number From 1 (Sunday) To 7 (Saturday). Default2Returns A Number From 1 (Monday) To 7 (Sunday).3Returns A Number From 0 (Monday) To 6 (Sunday).11Returns A Number From 1 (Monday) To 7 (Sunday).12Re...
WEEKNUM Function To Extract Week Number

WEEKNUM Function To Extract Week Number

Date And Time, FORMULAS
DEFINITION : WEEKNUM Function Need A Valid Date Or A Serial Number Of A Date And In Returns It Gives A Week Number From 1 To 54 Which Corresponds Week Of A Year. The WEEKNUM Function Begin Counting With The Week Contains 1St January. As A Default Week It Begin From Sunday For Which Return_Type Is 1. The Return_Type Parameter In WEEKNUM Function Is The Day Begin Number. By Default Value Is 1 And The Day Is Sunday. For More Details Please Check Image And Table Chart Below. SYNTAX : =WEEKNUM (SERIAL_NUM, [RETURN_TYPE]) Return Type Week Begin Name 1Sunday2Monday11Monday12Tuesday13Wednesday14Thursday15Friday16Saturday17Sunday21Monday
YEAR Function To Extract Year From A Date In Excel

YEAR Function To Extract Year From A Date In Excel

Date And Time, FORMULAS
DEFINITION: Year Function Returns The Year From A Valid Date In A Numeric Value. You Can Use The Year Function To Extract A Year From A Valid Date Into A Particular Cell Either By A Reference Cell Where A Valid Date Is Stored Or By Inputting The Date In Itself. Example Year("26-12-2020") Return 2020. Or Year("12-26-2020") Return 2020. Enter The Date According To Your Pc Settings.