Hello!
I need help with something, if it is even possible. I have a feed that I would like the user to be able to export from a view. One of the fields is an entity reference field from a global view. When I create a feed from the page where the amount is displayed, it doesn't carry over to the feed (csv file in excel). I can see the amount in the preview at the bottom of the page but not in the exported file.

I also noticed that the fields from the view are exported as strings. Is there a way to change the way the fields are formatted on export? If that is possible, I have another view where if I have it sum the fields, it would give me the totals I am looking for.

Any help would be fantastic.

This is the preview code it displays ( removed some of the rows for saving space):
The Invoiced is the field that is generated from the global view field and displays here in the preview but doesn't get exported.

<?xml version="1.0" encoding="UTF-8"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
<Worksheet ss:Name="og">
<Table>
<Row>
<Cell><Data ss:Type="String">Committee</Data></Cell>
<Cell><Data ss:Type="String">Project</Data></Cell>
<Cell><Data ss:Type="String">Organization</Data></Cell>
<Cell><Data ss:Type="String">Manager</Data></Cell>
<Cell><Data ss:Type="String">Amount</Data></Cell>
<Cell><Data ss:Type="String">Invoiced</Data></Cell>
<Cell><Data ss:Type="String">Status</Data></Cell>
<Cell><Data ss:Type="String">Progress</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">D – Demand</Data></Cell>
<Cell><Data ss:Type="String">2-3-20-15 Generic Project Test</Data></Cell>
<Cell><Data ss:Type="String">Adayana, Inc</Data></Cell>
<Cell><Data ss:Type="String">test.staff</Data></Cell>
<Cell><Data ss:Type="String">$1,000</Data></Cell>
<Cell><Data ss:Type="String">  
      
          $2800.00     
</Data></Cell>
<Cell><Data ss:Type="String">Active</Data></Cell>
<Cell><Data ss:Type="String">In-progress</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">R - Research</Data></Cell>
<Cell><Data ss:Type="String">Project to test Invoice Amount</Data></Cell>
<Cell><Data ss:Type="String">Adayana, Inc</Data></Cell>
<Cell><Data ss:Type="String">test.staff</Data></Cell>
<Cell><Data ss:Type="String">$40,000</Data></Cell>
<Cell><Data ss:Type="String">  
      
          $5000.00     
</Data></Cell>
<Cell><Data ss:Type="String">Active</Data></Cell>
<Cell><Data ss:Type="String">In-progress</Data></Cell>
</Row>

</Table>
</Worksheet>
</Workbook>