This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

export csv
#3
Improved example Wink

Code:
rows = {}

-- from 1/1/1 to 1/1/30
addrstart = 1
addrend = 30

rows[ #rows + 1 ] = 'name,actual_value,start_month,current_month,previous_month'

for i = addrstart, addrend do
  actual_value_obj = grp.find('1/1/' .. i)
  name = actual_value_obj.name
  actual_value = actual_value_obj.value
  start_month = grp.getvalue('1/2/' .. i)
  current_month = grp.getvalue('1/3/' .. i)
  previous_month = grp.getvalue('1/4/' .. i)
  
  rows[ #rows + 1 ] = name .. ',' .. actual_value .. ',' .. start_month .. ',' .. current_month .. ',' .. previous_month
end

csv = table.concat(rows, '\r\n')
Reply


Messages In This Thread
export csv - by akn - 07.04.2017, 09:11
RE: export csv - by buuuudzik - 07.04.2017, 10:16
RE: export csv - by admin - 07.04.2017, 11:25
RE: export csv - by buuuudzik - 07.04.2017, 14:28
RE: export csv - by akn - 10.04.2017, 16:42
RE: export csv - by akn - 10.04.2017, 18:06
RE: export csv - by Erwin van der Zwart - 10.04.2017, 19:39
RE: export csv - by akn - 11.04.2017, 12:15
RE: export csv - by admin - 11.04.2017, 12:21
RE: export csv - by akn - 11.04.2017, 20:41
RE: export csv - by admin - 19.04.2017, 12:29
RE: export csv - by akn - 22.04.2017, 13:28
RE: export csv - by Erwin van der Zwart - 22.04.2017, 18:35
RE: export csv - by akn - 24.04.2017, 19:27
RE: export csv - by Erwin van der Zwart - 24.04.2017, 21:37
RE: export csv - by akn - 26.04.2017, 14:28
RE: export csv - by akn - 22.08.2017, 11:02
RE: export csv - by admin - 24.08.2017, 10:05
RE: export csv - by akn - 25.08.2017, 12:50

Forum Jump: