Decimal Value in Page Footer ?

manikandanmanikandan Member Posts: 160
edited 2011-09-19 in NAV Three Tier
Hi,
In RDLC Report I have using Page Header and Page Footer using Getdata and Setdata method.
is it Possible to show 156.00 Instead of 156 in Page Footer not in Table Footer

Tks in Advance,
Manikandan

Comments

  • Troubles_In_ParadiseTroubles_In_Paradise Member Posts: 588
    manikandan wrote:
    Hi,
    In RDLC Report I have using Page Header and Page Footer using Getdata and Setdata method.
    is it Possible to show 156.00 Instead of 156 in Page Footer not in Table Footer

    Tks in Advance,
    Manikandan

    Not sure that works, but you can try with VB script function.
    =Round(Code.GetData(x,x),2))
    
    ~Rik~
    It works as expected... More or Less...
  • manikandanmanikandan Member Posts: 160
    Hi Troubles In Paradise,
    Tks for your reply.
    But this is Bug =Round(Code.GetData(x,x),2))
    i can achieve this by
    =FormatNumber(Code.GetData(20,3),2) \:D/ \:D/ \:D/
  • Troubles_In_ParadiseTroubles_In_Paradise Member Posts: 588
    manikandan wrote:
    Hi Troubles In Paradise,
    Tks for your reply.
    But this is Bug =Round(Code.GetData(x,x),2))
    i can achieve this by
    =FormatNumber(Code.GetData(20,3),2) \:D/ \:D/ \:D/

    Well-done!
    Thx for sharing :thumbsup:
    ~Rik~
    It works as expected... More or Less...
Sign In or Register to comment.