Ask a Question related to Microsoft Access, Design and Development.
-
Allen Browne #1
Re: Check for Null In Conditional Formating
Try the expression:
IsNull([NameOfYourFieldHere])
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - [url]http://allenbrowne.com/tips.html[/url]
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Chaster" <csanto@chadeen.com> wrote in message
news:%hYVa.46806$zy.43968@fed1read06...> I have had no luck with trying to figure out the syntax to determine if a
> value is null
>
> I have tried fieldvaule = "IsNull" but it only fires the condition if the
> text in the field = IsNull
> I have tried expression value ="IsNull"
>
> If you can help me out with this I need to check several types of field
> values such as Dates, Times and Text.
Allen Browne Guest
-
Check for null query
I have some code something like this in a query of a query: SELECT query1.field1, query1.field2, query1.field3 FROM query1 WHERE field1 not in... -
how to to check array Null value on coldfusion 7
Hi, How do you check the array elements empty or not. for example, I have array - array , and from array to array has some value, and there... -
Conditional formating
Hi, I'm working with a datagrid whithout any problem. But now I like to use some condinional formating to one of the columns. If the value in... -
Question: How check if datareader is null?
"VB Programmer" <growNO-SPAM@go-intech.com> wrote in message news:eGmnp2MYDHA.1784@TK2MSFTNGP09.phx.gbl... If Not (drReader Is Nothing) Then ...... -
conditional formating on Datagrid control
i have a databound datagrid control. one of the bound columns displays a date. i need to display it in red if it is 2 or less days from the current... -
Emilia Maxim #2
Re: Check for Null In Conditional Formating
"Chaster" <csanto@chadeen.com> wrote:
Chaster,>I have had no luck with trying to figure out the syntax to determine if a
>value is null
>
>I have tried fieldvaule = "IsNull" but it only fires the condition if the
>text in the field = IsNull
>I have tried expression value ="IsNull"
>
>If you can help me out with this I need to check several types of field
>values such as Dates, Times and Text.
if you want to use IsNull in code, then you must write:
If IsNull(ControlName) Then...
The data type is not relevant.
See also Help on IsNull function - which you should have done in the
first place, there are even examples.
Best regards
Emilia
Emilia Maxim
PC-SoftwareService, Stuttgart
[url]http://www.maxim-software-service.de[/url]
Emilia Maxim Guest



Reply With Quote

