Income/expenditure report
-
I have to prepare income-expenditure report.Both income and expenditure from logically different tables.I have to show like this: income expenditure ------ ------------ --------- ------- Can it be shown in gridview?OR do i have to use other control please explain in detail
-
I have to prepare income-expenditure report.Both income and expenditure from logically different tables.I have to show like this: income expenditure ------ ------------ --------- ------- Can it be shown in gridview?OR do i have to use other control please explain in detail
There are multiple way to display reports. You have to write simple SQL SP'S which will return you the required output, the Display it on
GridView
orRepeater Control
. Even you can useXSL
to render it on your page.cheers, Abhijit CodeProject MVP
-
I have to prepare income-expenditure report.Both income and expenditure from logically different tables.I have to show like this: income expenditure ------ ------------ --------- ------- Can it be shown in gridview?OR do i have to use other control please explain in detail
What defines the income / expenditure to be on the same line ? Is it a date? For example: April 15th, 2009: Income: $500, Expense: $200 Also, is there always a match between income and expense on the same day? Example 2: May 1: Income $200, no expense or No income, $50 expense. This would determine how the SQL query is structured.