Browse by Tags
All Tags »
reports (RSS)
It has been a while since my last post and I have gotten a few questions. One question was related to exporting reports to Excel. This is actually pretty simple; you may have noticed the IReportExportToExcelV2 interface. This is the key to this task.
Read More...
The question about the ReportColumnType came up in a comment for a prior post, and yeah I guess it’s fair that I tell you about it :o) First a brief description of the values, from the quick overview you can see that you really do not have that many ColumnTypes
Read More...
What if I have created a INativeReport and I want to filter it, but the build in filters are not exactly what I need? Well you can create your own filters! It does require some coding though (but we like code, right?). As an example let’s add a “Region”
Read More...
[ Serializable ] class RegionFilter : IReportFilterGenericV2 , ISerializable { private int censusRegion; private string state; private bool visible = true ; private string [] censusRegionNames = { "All" , "Northeast" , " New England " , " Middle Atlantic
Read More...
Ok - it’s been way too long since my last post, and I now feel forced to cover a topic that several people has asked me: “native reports are great and all, but can I add a total to my report”. The good news is the answer is yes, the bad news is it requires
Read More...
I got a comment on one of the prior post asking if I would create a new post on how to query the data in the Office Accounting database directly, thank you for the question. I would like to encourage other readers to ask for other posts on other things
Read More...
In my last post I showed that you can add a native report to Office Accounting. but really the report I created in my example was kind of bla – don’t you think? Let’s try to add a little meat to the report! Filtering To add filters to the report we have
Read More...