ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Help Required.... (https://www.excelbanter.com/excel-discussion-misc-queries/117490-help-required.html)

kiran

Help Required....
 
Dear All,
I want macro or formula for the below mentioned querry pls help i am
entering data's in cell A, B and output to be displayed in cell C as follows

A B C
01/11/06 02/11/06 1
NA NA NA
NO NO Voilated
01/11/06 NO Should show no for days from A cell
to today
01/11/06 NA 1


Gary''s Student

Help Required....
 
Try this UDF:


Function kiran(a, b)

kiran = ""

If IsDate(a) And IsDate(b) Then
kiran = b - a
Exit Function
End If

If a = "NA" And b = "NA" Then
kiran = "NA"
Exit Function
End If

If a = "NO" And b = "NO" Then
kiran = "voilated"
Exit Function
End If

If IsDate(a) And b = "NO" Then
kiran = Int(Now() - a)
Exit Function
End If

If IsDate(a) And b = "NA" Then
kiran = 1
End If

End Function


--
Gary's Student


"kiran" wrote:

Dear All,
I want macro or formula for the below mentioned querry pls help i am
entering data's in cell A, B and output to be displayed in cell C as follows

A B C
01/11/06 02/11/06 1
NA NA NA
NO NO Voilated
01/11/06 NO Should show no for days from A cell
to today
01/11/06 NA 1


kiran

Help Required....
 
That's great thanks ...:=(


"Gary''s Student" wrote:

Try this UDF:


Function kiran(a, b)

kiran = ""

If IsDate(a) And IsDate(b) Then
kiran = b - a
Exit Function
End If

If a = "NA" And b = "NA" Then
kiran = "NA"
Exit Function
End If

If a = "NO" And b = "NO" Then
kiran = "voilated"
Exit Function
End If

If IsDate(a) And b = "NO" Then
kiran = Int(Now() - a)
Exit Function
End If

If IsDate(a) And b = "NA" Then
kiran = 1
End If

End Function


--
Gary's Student


"kiran" wrote:

Dear All,
I want macro or formula for the below mentioned querry pls help i am
entering data's in cell A, B and output to be displayed in cell C as follows

A B C
01/11/06 02/11/06 1
NA NA NA
NO NO Voilated
01/11/06 NO Should show no for days from A cell
to today
01/11/06 NA 1



All times are GMT +1. The time now is 10:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com