Hi,

It would be nice, if \getspr{} of the m-spreadsheet module could print a
comma instead of a dot as decimal-point.

For now, I use this workaround:

--8<---------------cut here---------------start------------->8---
function spreadsheets.get(name,r,c,str)
    if name == "" then name = current if name == "" then name = "default" end 
end
    if not str or str == "" then
        context(data[name][c][r] or 0)
    else
        local result = execute(name,r,c,str)
        if result then
            if type(result) == "number" then
                data[name][c][r] = result
            end
            if userdata and userdata.spreadsheet_use_comma then
                result = tostring(result)
                result = result:gsub("%.", ",")
            end
            context(result)
        end
    end
end
--8<---------------cut here---------------end--------------->8---

-- 
           Peter
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to