Forum Discussion

AlessandroBet's avatar
6 years ago
Solved

create new table an visuali it with a visula

I have created the following table and I would like visualize each columns with a visual "table" but it doesn't work
 
#Margin_Table = DATATABLE("Mounth",STRING,"Margin",CURRENCY
    ,{
        {"Jan","100",
        {"Feb","200",
        {"Mar","300"
    }
)
 
Can you help me?

5 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion

    I believe you want:

     

    #Margin_Table = DATATABLE("Mounth",STRING,"Margin",CURRENCY
        ,{
            {"Jan",100},
            {"Feb",200},
            {"Mar",300}
        }
    )
      • v-easonf-msft's avatar
        v-easonf-msft
        Icon for Community Support rankCommunity Support

        Hi , AlessandroBet 

        You also can refer here.

        And could you please tell me whether your problem has been solved?
        If it is,  please mark  Greg_Deckler  replies or add your reply as Answered to close this thread.

         

         

        Best Regards,
        Community Support Team _ Eason
        If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.