NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: rupertvz on May 29, 2012, 06:13:17 AM

Title: NetWebBrowse formula
Post by: rupertvz on May 29, 2012, 06:13:17 AM
Hi Guys,

I'd like to include a NetWebBrowse formula, to calculate a value in a browse, and show in a local variable for each record.

For example;  calculating the day of the week, Mon, Tue, Wed, etc. based on a DATE value;

* I have the formula, just want to know where to include?
Can this be done upon formatting the browse?

Thanks, Rupert
Title: Re: NetWebBrowse formula
Post by: Bruce on May 29, 2012, 07:01:49 AM
you can put anything you like into the "display" setting for a browse column. It's an expression, so you can put in a formula, or a CHOOSE statement, or a field or whatever.

for example;

Choose(fil:date%7+1,'Sun','Mon','Tue','Wed','Thur','Fri','Sat')

cheers
Bruce


Title: Re: NetWebBrowse formula
Post by: rupertvz on May 30, 2012, 02:08:16 AM
Thanks Bruce, its working great :-)