NetTalk Central

Author Topic: NetWebBrowse formula  (Read 1564 times)

rupertvz

  • Sr. Member
  • ****
  • Posts: 314
    • View Profile
    • Email
NetWebBrowse formula
« 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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11183
    • View Profile
Re: NetWebBrowse formula
« Reply #1 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



rupertvz

  • Sr. Member
  • ****
  • Posts: 314
    • View Profile
    • Email
Re: NetWebBrowse formula
« Reply #2 on: May 30, 2012, 02:08:16 AM »
Thanks Bruce, its working great :-)