Excel "IF" function with DATE in test cell
Closed
                                    
                        LNTP3                    
                                    -
                            Aug 16, 2016 at 11:34 PM
                        
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Aug 25, 2016 at 11:02 AM
        TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Aug 25, 2016 at 11:02 AM
        Related:         
- Excel "IF" function with DATE in test cell
 - Excel mod apk for pc - Download - Spreadsheets
 - Mutator function c++ - Guide
 - Excel color function - Guide
 - Dash becomes date on excel ✓ - Excel Forum
 - What function can automatically return the value in cell c77 ✓ - Excel Forum
 
1 response
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Aug 25, 2016 at 11:02 AM
    Aug 25, 2016 at 11:02 AM
                        
                    Hi LNTP3,
What if AL2 has no date, but AM2 does?
See if this is what you are after:
Start by implementing a UDF (user defined function):
Open VB by hitting Alt+F11 > Insert module and paste the following in the big white field:
Now try a formula like this:
=IF(CheckDate(AL2)=TRUE,"IN TRANSIT",IF(CheckDate(AM2)=TRUE,"RECEIVED","IN TRANSIT"))
Best regards,
Trowa
            What if AL2 has no date, but AM2 does?
See if this is what you are after:
Start by implementing a UDF (user defined function):
Open VB by hitting Alt+F11 > Insert module and paste the following in the big white field:
Function CheckDate(rng As Range) As Boolean CheckDate = IsDate(rng) End Function
Now try a formula like this:
=IF(CheckDate(AL2)=TRUE,"IN TRANSIT",IF(CheckDate(AM2)=TRUE,"RECEIVED","IN TRANSIT"))
Best regards,
Trowa