Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Data Export to Excel Not Correct

The goal is to export data which has a ratio. Problem is that the visual will correctly display the ratio but when exported, excel will generate the value as a date. The measure creating this ratio w...
  • Anonymous's avatar
    Anonymous
    4 years ago

    I was able to find a resolution by updating the measure from " / " to " of "

    sold_inventory_ratio =
    FORMAT(VALUE([item_sold]),"0,0") & " of " & FORMAT(VALUE([item_inventory]),"0,0")