Show Region if Field from Recordset is '(not) null'
Facing yet another problem. The solution is probably going to be very simple but so far, I haven't figured it out. This is what I'm looking for:
Say you got a newspage displaying the title, message introduction and a read more button. The table in which newsmessages are stored has got 5 columns:
- ID (primary key, AI)
- date_entry (timestamp)
- newstitle
- newsintroduction
- newsmessage (can be NULL)
As you can see, the column 'newsmessage' can be NULL because sometimes, there are short messages. What I want to know is, if the column 'newsmessage' is NULL, on the page that displays the news records, the 'read more' link should not be visible. It should only show when the column 'newsmessage' is 'not null', so has got content in it.
Thanks!
