How Can I Display Different Fields In The Footer
Hi i have a report and i want 13 text boxes that i have in the body of the report in the Page footer.
So should i specify each textbox that i want to have in page footer or is possible for me to just call the rectangle that its sitting on.
and how can i reference a image which is been pulled by the dataset ..how should reference them..
Any help will be appreciated Regards
Karen
View Complete Forum Thread with Replies
Sponsored Links:
Related Messages:
Display Data From Matrix In Footer
I have a matrix within a list and would like to display a field value in the page footer on each page. In the page footer, if I reference a textbox from the matrix the value is always blank? I realize this is most likely a scoping issue but how can I accomplish this? Any ideas? Thx
View Replies !
View Related
How To Put Dataset Fields Into The Page Footer ... :(
Hello anyone!!!! Anybody knows if exists some way to put a dataset field into the page footer???, or if not, tell me if there is a way to do a €śsimilar€? of footer, cuz I need put information in the bottom of the report, but just in the last page, and need to left the space of this information in the another pages. Any suggest is welcome, tanks!!!!!
View Replies !
View Related
Accessing Data Fields In Page Footer
Hi All, How do I access data fields in page footer. Although Page Header and Page Footer can't contain data fields. What is alternative or other other solution for the same? It would really nice if somebody can help me out. Thank you Regards, Palak Shah
View Replies !
View Related
How To Force The Page Footer To Display At The *bottom* Of The Page
Is it possible to force the content of the page footer to always display at the bottom of a report? I have a report that shows customer orders. It has its interactive height set to 5 inches. There is one customer order per report page. Most of the reports don't require 5 vertical inches (but some do). How can I make sure that the stuff in the page footer (date, page number, etc.) always gets rendered in the same position for each report? Currently, the page footer follows the last detail line so the footer information sometimes is only midway down the report page. Thanks. BCB
View Replies !
View Related
Display Or Hide Page Footer Depending On The Page
Hi all I have a problem which I am really struggling with. I have a report that normally spreads over three pages. We have a list setup so that for each customer it picks up fees and expenses and displays it in sections. We have a page break after FEES so that expenses start on a new page. FEES and expenses are tables. We need to have a page footer set for the bottom of the report but to appear on the first page only per customer. I.e. we do not want it showing on the EXPENSE pages. We have played with the IIF command but can not seem to print htis per customer only by using global variables. =IIf(Globals!PageNumber=1,"(Please note 30 day invoice period) The example above however only prints on the first page of the entire report. So if three customers appear then this will only appear for the first customer and I have a feeling I may not be able to link this to list. If I can not use a page break and enter this into the list then I have a problem with the text field moving up and down depending on the size of the FEE section. For example if 5 fees are brought back then the text field will be lower then a customer that has only 2 fees. I after a solution that can either allow my page fotter to appear every time a new customer appears on a page and hiddern for the sub sheets. Or the ability to allow my text field to start at a fixed position on my report. Has anyone had a similar issue. thank you Michael
View Replies !
View Related
Front End Display Of Two Fields
I am doing a report which needs to display a field like totals/percentages... the actual data values is something like this =(Sum(Fields!B.Value))& " / " & (Sum(Fields!B.Value))/(sum(Fields!A.Value) + sum(Fields!B.Value)+sum(Fields!C.Value)+sum(Fields!D.Value)+sum(Fields!E.Value)+sum(Fields!F.Value)) *100 the problem is sum (fields!B.value) is an integer (sum of students) like 32 and the aggregate value in the denominator is a percentage value (0.014343443%) I need to approximate the value to 0.014 something like this totals/percentages... .......32/0,014 instead of 32 / 0.014343443 in the front end of the report properties Please help Thanks
View Replies !
View Related
Display All The Fields In Sql Server 2005
I want to select all the fields from just one table This is what i have and i am having trouble selecting all the fields select * from ace_users where chdata EXISTS (select chdata, count(chserialnum) from ace_users group by chdata having count(chserialnum)> 1) Exists and IN does not work.
View Replies !
View Related
Display All Fields Including The Field Has Dup
I have one table where i want to use aggregate function for duplicate rows and also be able to select all fields to display. How would i do that? Here is my query: select Z, count(*)as num from Table group by Z having count(Z) > 1 ----- this returns 213 rows Select Z, A,B,C,D From Table Group By Z, A,B,C,D Having Count(Z)>1 ----This gives me nothing Hope I am explaining this correctly as to what I want. Thanks, Saru Brochu
View Replies !
View Related
SELECT Statement To Display Combined Fields
Dear All I am trying to populate an OledbDatareader for binding to a ASP datagrid. For this I use select statement to display combined fields in a datagrid cell. Eg. Select (Field1+ '<br/>' + Field2 + '<br/>' + Field 3) As Address .. and so on. But the problem is if any of the three field is null the combined field 'Address' returns as Null. Please help me to overcome this problem. Regards kalanad ( beginner)
View Replies !
View Related
Display Fields In Controls Created At Runtime
I'm a vb beginner. How do you display the items counted from a table to a textbox which is created at runtime? Below is the code I started for counting. Dim RST As ADODB.Recordset Set RST = GetRecordset("select count(*) from lkpMeatTableFormula where intSKUTitle = '" & cmbSKU & "'") Count = RST(0) Set RST = Nothing Txs
View Replies !
View Related
Display Duration Between Two Datetime Fields In 00:00 Format
I have a requirement to display the elapsed time between two datetime fields. What i have been able to do is datediff the dates and get the elapsed time in minutes and then i am trying to format it as HH:MM. For example, an activity started on Nov 1 2007 08:00 and finished Nov 1 23:59, the elapsed time should be displayed as 15:59. The other example is if the activity spans over a couple of days, it should be say 49:03. I put the following code in the format of the textbox, but it only seems to work when the length of the minutes is greater than 1. =IIF(Len(CStr(Fix(ReportItems!textbox11.Value/60)))= 1, "0" + CStr(Fix(ReportItems!textbox11.Value/60)), CStr(Fix(ReportItems!textbox11.Value/60))) + ":" + IIF(Len(CStr(Fix(ReportItems!textbox11.Value Mod 60)))= 1, "0" + CStr(Fix(ReportItems!textbox11.Value Mod 60)), CStr(Fix(ReportItems!textbox11.Value Mod 60))) Have i missed something really simple or what? Any help would be much appreciated. Alternatively, if you have a better way of doing the whole thing would like to hear from you. Thanks in advance.
View Replies !
View Related
Split Fields And Display Query Result
Hi, I'm having a problem in spliting the fields I need to ru the following query to join two tables and getting the output as shown. Query: select cusl.user_name, pmts.bill_ref_info, pmts.payee_acid, pmts.cust_acid, pmts.txn_amt,pmts.pmt_id from cusl, pmts where cusl.ubp_user_id = pmts.ubp_user_id and pmts.ubp_user_id= 'testinglive' Output: user_name bills_ref_info payee_acid cust_acid txn_amt SAMEER ALLA0210181#123456#Amita 378902010021095 383702070051411 1.000 16318 SAMEER BARB0GNFCOM#6788990#Vikram Kalsan 378902010021095 383702070051411 1.000 16327 SAMEER BKID0000200#378902010099678#Vikram 378902010021095 383702070051411 1.000 14031 SAMEER undefined#123456789123456#Vikram 378902010021095 383702070051411 1.000 13918 Now I need to display the second field which is a #-separated field as individual fields alongwith tghe other fields that are shown on execution of the query. Can this be done? Please guide me on this...
View Replies !
View Related
Is There A Way To Select What Fields To Display On A Report From A Multi-value Parameter?
I am trying to figure out a way to toggle the visibility of attribute data based on a parameter. Specifically, I have a report that has many columns that an end-user may not want to see, depending on what they are using the report for. I know you can toggle visibilities on individual columns easily enough, however I want the user to be able to select which fields (at the attribute level) they want visible on the report up in the parameters, via a multi-value prompt. Is this possible with reporting services 2005? Thanks.
View Replies !
View Related
Display Page Footer On First Page Only
Is there anyway to set-up the page footer of a report to print on the first page only? I was going to try an IIF statement, but realized there is no visibility style property associated with the Page Footer section. If you have any ideas, let me know. Thank you, T.J.
View Replies !
View Related
Change/Add Report Fields To Display Based On The Parameter Selected
I have a report parameter named "Schools" which display a list of schools. For example, Alo elementary school, Balo middle school and Calo high school. When "Alo elementary" is selected the report only display students from that school along with other assessments data fields. same goes for other schools too. But I want to display different data fields for "Calo high school" when it is selected. It is not currently possilbe becasue I am using the same template for all types of schools. There some fields only should be displayed for "Calo high school" but not for any other type of schools. I can accomplish this by creating two separate report, one for "Calo high school" and the other for other schools. But I want to accomplish this just by creating one report. So when "Alo elementary school" is selected it displays report with certain fields and when "Calo high school" is selected then it displays same fields as "Alo elementary school" but as well as some other fields too in the report. Is this possible? Need help.
View Replies !
View Related
How To Pull Data Into A Datagrid From The Same Table, 2 Fields, And Display Them As 1 Field In The SqlDataSource?
Hi, Im trying to pull data from 2 fields in the same table into a SqlDataSource that feeds into a GridView, and display them as 1 field in GridView? I have a database table that has entries of users and their friends. so this tblFriendUser has a column called UserName and another column called FriendUserName. I am trying to get a list of friends for that particular user. Note that if User1 initiated the friend request, he will be listed as UserName and his friend as FriendUserName, but if his friend initiated the friend request, it will be vice versa: him being the FriendUserName and his friend the UserName. So I want the following 2 queries run and merged into one query in order to return 2 columns only: UserFriendID & UserName, is that possible? Is my design bad? Any suggestions/advice would help! Thanks a lot! SELECT UserFriendID, UserName FROM tblUserFriends WHERE (UserName = @UserName); SELECT UserFriendID, FriendUserName AS UserName FROM tblUserFriends WHERE (FriendUserName= @UserName);
View Replies !
View Related
Using 3 TBLS. Want To Display Fields Frm Othr Tbls
I am using three tables. select * from ldap_users as PL where (emcidentitytype like '%P%') and(ctscUserKeywords NOT LIKE '%LockedOut%') AND(ctscUserKeywords NOT LIKE '%LockedOut%') and emclastdayworked = '' and (uid in(select fax from oracle_11i_user) or uid in (select fax from ORACLE_1103_USER)) This query only display all the fields from PL. I want to display end_date from both oracle11i and oracle1103 tables? How would I do that?
View Replies !
View Related
Varrying Page Footer Size In Ssrs Or Dynamically Displaying Page Footer In Ssrs
In SSRS my problem is to "show the page footer only in the first page of the report" and not in the other pages. That is if i am having 10 pages, the page footer should come only in the first page of the SSRS report and it should not shown in the remaining 9 pages. I used the expression in the visibility property of the rectangle which is placed in the page footer. But i can able to hide only the rectangle which is in the page footer of the remaining 9 pages. But the space occupied by the page footer is not get reduced. So i need to show the page footer dynamically, without occupying the space even a little. Is there any "tricks or techniques"?. Please let me inform, if so. It's very urgent. Thanks a lot in advance. Regards, MTRCHN
View Replies !
View Related
Page Totals: Table Footer Or Page Footer?
I currently have an Ungrouped Dataset being displayed in a Table. One of the columns include AMOUNT. This is an example of what my report looks like atm: ================== **Report Name** No Name Amount Signed By XXXX ================== I would like to display a SUBTOTAL of the Amounts for each page and, on the final page, a TOTAL of the Amounts. Yes the Last Page's SubTotal and Total will be the same. Looking like: =============================== pg1 **Report Name** No Name Amount Sub Total Amount Signed By XXXX (lastpage) **Report Name** No Name Amount (<-----no huge spaces between Table/Subtotal) Sub Total Amount Total Amount Signed By XXXX ================================= Issues: I've found a way to get a Page's SubTotal, but the way I found requires this to be put in a field on the Page Footer Section. This means that on the final page, the SubTotal will be at the top of the Page Footer and not neccessarily directly beneath the table. So: 1. Is there a way to move the Page Footer so that its printed DIRECTLY under neath the Page Body instead of at the bottom of the Page? 2. If not, is there a way to have the SubTotal of each Page and a Final Page Total in the Page Body section. Cheers.
View Replies !
View Related
Subreports: Parameter Value Dropdown Shows Sum And Count Fields But Not The Actual Data Fields.
I have just started using SQL Server reporting services and am stuck with creating subreports. I have a added a sub report to the main report. When I right click on the sub report, go to properties -> Parameters, and click on the dropdown for Parameter Value, I see all Sum and Count fields but not the data fields. For example, In the dropdownlist for the Parameter value, I see Sum(Fields!TASK_ID.Value, "AppTest"), Count(Fields!TASK_NAME.Value, "CammpTest") but not Fields!TASK_NAME.Value, Fields!TASK_ID.Value which are the fields retrieved from the dataset assigned to the subreport. When I manually change the parameter value to Fields!TASK_ID.Value, and try to preview the report, I get Error: Subreport could not be shown. I have no idea what the underlying issue is but am guessing that it's because the field - Fields!TASK_ID.Value is not in the dropdown but am trying to link the main report and sub report with this field. Am I missing something here? Any help is appreciated. Thanks, Sirisha
View Replies !
View Related
Public Overridable ReadOnly Default Property Fields() As ADODB.Fields
sir I have got this error message to establish connction with recordset vb .net, Can you please rectify this Too many arguments to 'Public Overridable ReadOnly Default Property Fields() As ADODB.Fields' my code like this rs = New ADODB.Recordset rs.Open("Select * from UserLogin where userid='" & txtUserName.Text & "'", gstrDB, DB.CursorTypeEnum.adOpenStatic) If txtUserName.Text = rs.Fields.Append(userid) Then MsgBox("OK", MsgBoxStyle.OKOnly, "Confirmation") End If thanks
View Replies !
View Related
Update Fields With Searched First Date Record Fields
Hello !I'm trying to update one table field with another table searched firstdate record.getting some problem.If anyone have experience similar thing or have any idea about it,please guide.Sample case is given below.Thanks in adv.T.S.Negi--Sample caseDROP TABLE TEST1DROP TABLE TEST2CREATE TABLE TEST1(CUST_CD VARCHAR(10),BOOKING_DATE DATETIME,BOOKPHONE_NO VARCHAR(10))CREATE TABLE TEST2(CUST_CD VARCHAR(10),ENTRY_DATE DATETIME,FIRSTPHONE_NO VARCHAR(10))DELETE FROM TEST1INSERT INTO TEST1 VALUES('C1',GETDATE()+5,'11111111')INSERT INTO TEST1 VALUES('C1',GETDATE()+10,'22222222')INSERT INTO TEST1 VALUES('C1',GETDATE()+15,'44444444')INSERT INTO TEST1 VALUES('C1',GETDATE()+16,'33333333')DELETE FROM TEST2INSERT INTO TEST2 VALUES('C1',GETDATE(),'')INSERT INTO TEST2 VALUES('C1',GETDATE()+2,'')INSERT INTO TEST2 VALUES('C1',GETDATE()+11,'')INSERT INTO TEST2 VALUES('C1',GETDATE()+12,'')--SELECT * FROM TEST1--SELECT * FROM TEST2/*Sample dataTEST1CUST_CD BOOKING_DATE BOOKPHONE_NOC12005-04-08 21:46:47.78011111111C12005-04-13 21:46:47.78022222222C12005-04-18 21:46:47.78044444444C12005-04-19 21:46:47.78033333333TEST2CUST_CD ENTRY_DATE FIRSTPHONE_NOC12005-04-03 21:46:47.800C12005-04-05 21:46:47.800C12005-04-14 21:46:47.800C12005-04-15 21:46:47.800DESIRED RESULTCUST_CD ENTRY_DATE FIRSTPHONE_NOC12005-04-03 21:46:47.80011111111C12005-04-05 21:46:47.80011111111C12005-04-14 21:46:47.80044444444C12005-04-15 21:46:47.80044444444*/
View Replies !
View Related
Search Multipe Fields, Compounding Fields, Like, Contains...?
I would like to search a table for a phrase, or for a partial phrase,eg on table product - for name or description, or name + descprition.How does one say select * from product where name + description like%phrase%or contains phraseCurrently I can get where name, or where descriotion like %phrase%,eg, where name like krups, or where description like coffee makerBut if I search for where name like %krups coffee maker% i get noresults. krups is in the name field, coffee maker is in thedescription field.Thanks,-M
View Replies !
View Related
Skip Footer Row
Hi, There is an option in ssis to skip one or more header rows, but there isn't any thing to skip one or more footer rows. Example: header bla bla 1;"Joe";24;"New York" 2;"John";54;"Washington" 3;"Phil";36;"San Francisco" footer bla bla I skip the first record in the source definition. So I have left 4 records. How do I skip the fourth (last) record? The value contains some statistics so I cann't look for a special value. Is there a way to skip the last record with a script component? Joost
View Replies !
View Related
ReportItems In My Footer
I am having a problem viewing my footer on all pages of my report. I have created a page footer that reads ="The " & ReportItems("textbox213").Value I am getting the value on the first page only and then only getting "The" on the rest. My "PrintOnFirstPage" and "PrintOnLastPage" are both marked True in the Page Footer properties. I am completely confused. This is not the only textbox in my footer I have two others both which print on all pages, but neither of them use the ReportItems. Can anyone help on this? Thanks....Cin
View Replies !
View Related
Footer Totals
I have a report, using a table, that is grouped by acct. The acct indicates either revenue or expenses. I have a total in my table that will give me the totals for revenue, and the total for expenses. At the end of the report, in the table footer, I want to add a Surplus/Deficit total, which would be the total revenue - total expenses, but I can't seem to get it right. I tried the following: =Sum(ReportItems!table1_Group1.Value) thinking that it would give me the total by the group, but I get the error that an aggregate function can only be used on page header and footer. How do I just get a basic grand total in my report? Thanks in advance!
View Replies !
View Related
Table Footer
I have a report with a group total and a report total. The report total is the sum of all group totals. When I run the report in report manager (sql server 2005 SP2) it shows the report total on the last page of the report with the group total for teh client. for instance the first page has Report Title Details Group Total Second Page Details Group Total Last Page Details Group Total Report Total When I export the report to pdf the Report Total is printing on its own separate page which is not what I want. I would like the report total be on the last page of teh report just like shown above. The report total is in the table footer. Pls help.
View Replies !
View Related
Footer Not Printing
Hi everyone, For some odd reason the footer of my report never gets printed. The footer contains the page number and report name and is very important to my report. I made sure the margins are 1 inches for all sides, made sure Footers printing in first and last pages are checked in the properties section, and gave it a large amount of space around the textbox. Is there anything I am doing wrong? Also, the header and body prints correctly. Thanks
View Replies !
View Related
Footer Rows To Skip
OK. We know there is Header rows to skip options and it works great. I've got the file that has a "footer". Here is an example: . PSC filename=table1 records=0000000000525 ldbname=db1 timestamp=2006/02/07-16:25:00 numformat=44,46 dateformat=mdy-1910 map=NO-MAP cpstream=ISO8859-1 . 0000260611 It's ALWAYS last 12 rows. Is there a way to split at this point and put the 12 rows in a different location? The task is twofold - I don't need these control rows in my data and I need value of "records" to verify loaded number of rows. UPDATED: After some testing I found out that the Flat File source does not see that footer at all. This is good and bad - I do want to load this metedat into some other tables. Dima.
View Replies !
View Related
Dynamic Footer Visibility
I have two DataSet and two tables in a report. Almost identical reports (top 5). Both DataSet have a Boolean indicator and I am to append an asterisk to a column in the detail rows if indicator is true. If an asterisk appears, I am to display the footer, that has a comment in it explaining the asterisk. Public Class AsteriskFootNote ' ' To be used on the Visibility.Hidden attribute ' Dim _FooterVisiblity As Boolean = True Public ReadOnly Property FooterVisibility() As Boolean Get Return _FooterVisibility End Get End Property ' Function AsteriskIndicator(ByVal strInd As String) As String If (strInd.ToLower = "true") Then _FooterVisibility = False Return "*" End If Return "" End Function ' End Class I have instantiated two classes Dollars and Hours. In the detail, call the =Fields!Descr.Value & Code.Dollar.AsteriskIndicator( Fields!MultiInd.Value ) In the footer visibility, I assign hidden: =Code.Dollar.FooterVisibility But it does not work. The tables act as if they assign the Hidden value, then processes the detail rows.
View Replies !
View Related
Orphaned Report Footer
Hello, I have a situation in a report where a report footer is printed without any detail lines or header. the report is a table with report header, 4 groupings with headers and footers and a report footer. The repeat headers/footers on new page is marked in the report properties. How can I control this behaviour? The report header, at least, should display with the report footer, although it will be nicer to have the last detail line (and in this report the 4 group footers) with the report footer. there should be no orphaned details/footers with no header. I dont know if it matters but the report was rendered as PDF doc. TIA gold
View Replies !
View Related
Page Footer Problem
Hi, I created a report with a page footer. In the properties of the pagefooter I did set PrintonFirstPage to FALSE en PrintOnLastPage to TRUE. If I run my report which takes 5 pages then on the first page the pagefooter is not visible. So that is OK. But from the 2nd page until the las one the PageFooter is visible and I want it only on the very last page. What do I do wrong or how can I solve this? Carlo
View Replies !
View Related
Footer Does Not Exported To Excel
Hi, I have a report with text in the footer. When I exported it to excel, every thing except from the footer is exported (the report body and header are OK). I'm not getting any error but the text in the footer just doesn't appear. Any solution? Thanks.
View Replies !
View Related
How Ti Get Concatinated Value In A Group Footer
Hi, I want to display a concatinated value of strings (DB field) having a "/" in between, for each group separately in the group footer.I tried using custome code.I was calling that code in detail.In detail it was showing correctly i.e running concatenated value for each record.But when i used the same global variable in group footer it's taking previous group's concatenated value and first groop footer shows a blank string.I guess its because groop footer thing is getting executed before the detail part.so can you please give me any solution for this. Thanks in advance Suchi
View Replies !
View Related
How To Do Subtractions In Table Footer?
Hi, I have a table with say 10 rows. How can I sum up the first 10 rows and subtract that total from the 10th row value? Rows 1-9 have a specific value in the dataset and row 10 has a different value so I can distinguish the rows. However I can figure out the expression I should add to the table footer? I am trying this... =sum(iif(Fields!recordType.Value<>1,Fields!Month1.Value,0))-sum(iif(Fields!recordType.Value=1,Fields!Month1.Value,0)) So I am saying, if the row has a "recordType" value of something other than 1 then sum it and then subtract any value where the "recordType" is equal to 1. But I just get am "#error" on the report footer when I run it. Any help? Thanks
View Replies !
View Related
Printing Footer In Reports
hi, I am using vb.net 2005 and sql server 2005 express edition. I have used reports (*.rdlc) to print invoice. The invoice format is as follows: '********************************************************************************** Company Name Party Name Invoice No. Date Item No. Description Qty Rate Amount 1 2 3 Taxes and Duties applicable Amount In Words For Company Name '********************************************************************************** All the data is placed in body section of report using different DataTable dataregions. This is done as Taxes and Duties have multiple Rows and columns but the location of printing of Taxes & duties Table on paper always changes depending on the no. of items in the invoice this does not match with the pre printed stationery used for invoice printing. How do i print the taxes & duties and all details below the ItemDetails Table always at the same location independent of the no. of items in the invoice?
View Replies !
View Related
SSRS Footer With Data
I'm writing a report that will have data for mulitple accounts btoken up by page breaks(on account) The user would like to see the name of the account in the footer. Since the entire report will consist of many accounts using first or last in the footer element is not an option. Does anyone know of a way to get the account that is displayed in the body of the page to display in the footer? Thanks
View Replies !
View Related
Page Footer Print Twice.
Hi. I wote a report including body and pagefooter, On body I put a list & the list inside had a table. Now when I print out this report, printer will printout 2 pages. (correct report is 1 page) , and on the second page, it had page footer only. If I turn off this page footer on next page, printer still printout a blank page that's i don't need. Does anybody can help me fix this problem? Thanks
View Replies !
View Related
Group Footer With Totals
I have a tabular report with grouping on the following fields: Grouped rows: MDC, DrgDesc, ChronicOther Detail row: Cases The desired output follows: MDC1 DrgDesc1 Chronic 50 Other 25 Total cases for DrgDesc1= 75 DrgDesc2 Chronic 20 Other 33 Total cases for DrgDesc2 = 53 etc.... I have everything working up to the Total cases for each DrgDesc. I tried adding a group footer to the Cases row, however this sub-totals for Chronic and Other rather than summing them together. Example is below. MDC1 DrgDesc1 Chronic 50 50 Other 25 25 DrgDesc2 Chronic 20 20 Other 33 33 etc.... How can I achieve the desired result?
View Replies !
View Related
Row Number Of Group Footer
How would I get the rownumber() for a Group Footer in report designer not in my query? I put the syntax rownumber(nothing), but it is giving me the row numbers for the detail section. Any help would be appreciated.
View Replies !
View Related
|