I have created a view based on a custom query such as:
SELECT ss.corehub, ss.DS3NEDiscComplete, count(ss.DS3NEDiscComplete) FROM
(SELECT gcgipon, max(corehub) 'corehub' , max(hop), max(DS3NEDiscComplete) DS3NEDiscComplete from
ExcelCircuitOrders E
where DS3NEDiscComplete is not null
group by gcgipon) ss
group by corehub, DS3NEDiscComplete
The issue is that when I build and view the code I see blank values for the date and numeric fields. When I export the results to excel all fields are output as they should be.
Thanks