Sorting in dataset vs sorting in the report

Are the some guidelines on when to use sorting in dataset vs sorting in the report?

Hi JoeSchmoe115,
In Reporting Services, we can add ORDER BY clause to presort data that is retrieved for a report in the dataset queries. Or we can sorting groups or sorting by aggregate values in the report. When we add ORDER BY clause to sort the data in the order we want
it sorted in the report. Presorted data improves report processing time because of the way it is stored in memory. And there are many report processing tasks do not require sorting data before processing it. For example, SUM is not order-dependent and Data
within group instances is not automatically sorted.
So sorting groups or sorting by aggregate values is much simpler in the report than in the query and is frequently more efficient also. If we do not need sorted data in the report, do not set sort expressions on the dataset. For more details, please see:
Troubleshooting Reports: Report Performance
Hope this helps.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • How to display the sort value in the selection screen in the report title

    Dear All,
    How to display the sort value in the selection screen in the report title? I have selected a value in the selection screen for sorting , but i need that values by which i have sorted with in the report title. Can you please throw some light on this!!
    Good day,
    Thanks and regards
    Arun S

    Hi Arun,
    Try this.
    1, Set one dynamic parameter,
    2, Drag and drop that parameter into  your report title.
    3, Pass the value(sort value) dynamically from your application,
    4, Cheers..
    Other wise Try with Dataset, create a dataset and fill thev alue into that.. Then  set the data source from CR designer. and darg and drop that data column into the report.
    Hope this will work,
    Regards,
    Salah
    Edited by: salahudheen muhammed on Mar 25, 2009 11:13 AM

  • How to Sort the report by clicking the column_header at runtime?

    Hi,<br /><br />Im New to Crystal Reports.<br /><br />Im Using Crystal report server XI. and JSP<br /><br />I need to  <strong>Sort</strong> the report by clicking the<strong> column_header</strong> at runtime.<br /><br />How to implement this ?<br /><br />Please help me.<br /><br />- Venkat.<br />

    <p>Hi Venkat</p><p>I don&#39;t believe there is a way to do this out of the box.  I believe you would have to do a custom code solution so that when you click on the header the report is re-run with a different sort order.  This may not be that easy to implement.</p><p>I&#39;m going to check with the new WebElements custom functions that were released on this site.  They may provide for this functionality. <br /></p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Sorting the report by clicking the column header

    Hello,
    Currently working on a requirement where i need to sort the report by clicking the column header. Can anyone please help me on this.
    Suppose i have 3 colums deptno,dname,sal fields in my report. if i click deptno column header,  report has to sort by deptno.Like that i need for other columns also.
    Any help is really appreciated
    Thanks
    Ram

    Hello,
    You can sort the fields using method suggested by Cauvery. However if you would like to have Ascending/ Descending sort order control at column header, then would require to implement few additional steps.
    First do the sorting of field using the way suggested by Cauvery. Once sorting is done, right  click on the column name and  select the option ' Bind Sort Control'. You will see the sorted field in the window. select the field and click ok.
    Now you would get 2 arrows on column. If you click upper arrow, fields would be sorted in Ascending Order and if you click on down arrow, it would  be in Descending order.
    Regards,
    Chinmay Athavale

  • Sorting makes the report slow

    Hi,
    I need to sort the SQL (APEX_ITEM) report. I created a hidden item and used the hidden item to sort the report. Its working fine but making the report very slow.
    If I remove the sorting, then the report runs fast.
    Please let me know what should do to make it faster.
    Thanks.

    Hi Denes,
    Here is my query:
    SELECT apex_item.hidden (21, R.pk) || apex_item.hidden (22, R.imo) || apex_item.hidden (23, wwv_flow_item.md5 ( R.PK ,R.RQMT )) ||
    apex_item.hidden (24,R.imso)|| apex_item.hidden (25, R.installation_number )|| apex_item.hidden (26, R.base_code) ||
    apex_item.text (27, R.year, 80,100,
    'style="width:40px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly" title="Year"', 'f27_' || LPAD (ROWNUM, 4, '0')) year ,
    apex_item.text (28, R.fcg, 80, 100,
    'style="width:64px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly" title="Fcg"', 'f28_' || LPAD (ROWNUM, 4, '0')) fcg,
    apex_item.text (29, R.IMO_NAME, 80, 100,
    'style="width:90px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Imo"', 'f29_' || LPAD (ROWNUM, 4, '0')) IMO_NAME,
    apex_item.text (30, R.IMSO_NAME, 80, 100,
    'style="width:96px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly" title="Imso"', 'f30_' || LPAD (ROWNUM, 4, '0')) IMSO_NAME,
    apex_item.text (31, R.installation_NAME, 80, 100,
    'style="width:140px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly" title="Installation"', 'f31_' || LPAD (ROWNUM, 4, '0')) INSTALLATION_NAME,
    apex_item.text (32, R.BASE_NAME, 80, 100,
    'style="width:160px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Base"','f32_' || LPAD (ROWNUM, 4, '0'))BASE_NAME,
    apex_item.hidden (33, R.FCG_DESC) ||
    apex_item.text (34,R.FAC, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Fac"','f34_' || LPAD (ROWNUM, 4, '0')) FAC,
    apex_item.hidden (35, R.FAC_DESC)||
    apex_item.text (36, R.EFR, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Efr"', 'f36_' || LPAD (ROWNUM, 4, '0')) EFR,
    apex_item.hidden (37,R.EFR_DESC) ||
    case when
    get_PK_status(R.PK) IN ('Edited','Reviewed','Approved') and
    :P2_Role = 'EDITOR' then
    apex_item.text (38, R.rqmt,80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Requirement"', 'f38_' || LPAD (ROWNUM, 4, '0'))
    when
    nvl(get_PK_status(R.PK),'X') not in ('Edited','Reviewed','Approved') and
    :P2_Role = 'EDITOR' then
    apex_item.text (38,R.RQMT,
    80, 100,
    'style="border:1.3px solid black;width:75px;text-align:right;'
    || 'color:darkblue;font-weight:bold title="Requirement"',
    'f38_' || LPAD (ROWNUM, 4,'0'))
    when
    get_PK_status(R.PK) IN ('Edited','Reviewed','Approved','Disapproved') and
    :P2_Role = 'REVIEWER' then
    apex_item.text (38,R.rqmt,80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Requirement"', 'f38_' || LPAD (ROWNUM, 4, '0'))
    when
    nvl(get_PK_status(R.PK),'X') NOT IN ('Edited') and
    :P2_Role = 'REVIEWER' then
    apex_item.text (38, R.rqmt,80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Requirement"', 'f38_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) = 'Edited' and
    :P2_Role = 'REVIEWER' then
    apex_item.text (38, R.RQMT,80,100,
    'style="width:75px;text-align:right;'
    || 'color:darkblue;font-weight:bold title="Requirement"',
    'f38_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) IN ('Edited','Reviewed','Approved','Disapproved') and
    :P2_Role = 'APPROVER' then
    apex_item.text (38, R.rqmt,80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Requirement"', 'f38_' || LPAD (ROWNUM, 4, '0'))
    when nvl(get_PK_status(R.PK),'X') NOT IN ('Reviewed') and
    :P2_Role = 'APPROVER' then
    apex_item.text (38, R.rqmt,80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold" readonly="readonly"title="Requirement"', 'f38_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) = 'Reviewed' and
    :P2_Role = 'APPROVER' then
    apex_item.text (38,R.RQMT,80, 100,
    'style="width:75px;text-align:right;'
    || 'color:darkblue;font-weight:bold title="Requirement"',
    'f38_' || LPAD (ROWNUM, 4, '0'))
    end RQMT,
    case when get_PK_status(R.PK) = 'Edited' and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkred;background-color:yellow;font-weight:bold " readonly="readonly"title="Edited"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    when nvl(get_PK_status(R.PK),'X') NOT IN ('Edited','Reviewed','Approved','NotReviewed','Disapproved') and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkred;background-color:#FFF4BF;font-weight:bold " readonly="readonly"title="New Requirement"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) IN ('Reviewed') and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkred;background-color:lime;font-weight:bold " readonly="readonly"title="Reviewed"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) IN ('Approved') and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:solid black;background-color:#DAFFBF;font-weight:bold " readonly="readonly"title="Approved"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) IN ('Disapproved') and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:SOLID black;background-color:RED;font-weight:bold " readonly="readonly"title="Not Approved"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    when get_PK_status(R.PK) IN ('NotReviewed') and
    :P2_Role in('EDITOR','REVIEWER','APPROVER') then
    apex_item.text (39, RU.RQMT, 80, 100,
    'style="width:75px;text-align:right;'
    || 'color:SOLID black;background-color:orange;font-weight:bold " readonly="readonly"title="Not Reviewed"' , 'f39_' || LPAD (ROWNUM, 4, '0'))
    end NEW_RQMT,
    apex_item.text (40, RU.Status, 80,100,
    'style="width:75px;text-align:right;'
    || 'color:solid darkgreen;background-color:#FFF4BF;font-weight:bold " readonly="readonly"title="Status"', 'f40_' || LPAD (ROWNUM, 4, '0')) STATUS ,
    CASE WHEN (get_PK_status(R.PK) IN('Edited','Reviewed','NotReviewed') and :P2_Role = 'APPROVER') THEN APEX_ITEM.SELECT_LIST(41,'Approved','Approved;Approved,Disapproved;Disapproved','','title="This field is only for Reviewers and Approvers"')
    WHEN (get_PK_status(R.PK) = 'Edited' and :P2_Role = 'REVIEWER') THEN
    APEX_ITEM.SELECT_LIST(41,'Reviewed','Reviewed;Reviewed,NotReviewed;NotReviewed','','title="This field is only for Reviewers and Approvers"')
    ELSE
    APEX_ITEM.SELECT_LIST(41,'','','title="This field is only for Reviewers and Approvers"')
    END ACTION ,
    '<a href="javascript:popUp2('''
    || 'f?p=&APP_ID.:3:&SESSION.::NO::P2_PK:'
    || R.PK
    || ''', 1200, 500);">'
    || '<img src="#APP_IMAGES#blue_book_open.gif" title="View Row History" >'
    || '</a>' History
    from rplans_sumtab R,
    (SELECT PK, RQMT, STATUS, DATE_CREATED FROM RPLANS_USER_SUMTAB R1
    WHERE DATE_CREATED = (SELECT MAX(DATE_CREATED) FROM RPLANS_USER_SUMTAB R2
    WHERE R2.PK = R1.PK)) RU
    WHERE R.PK = RU.PK(+)
    2.) The pagination I am using is:
    Row Ranges 1-15 16-30 (with set pagination)
    3)The table has only 1000 records.
    The report runs very fast when I don't use sorting, but when I use sorting, it becomes very slow.
    Thanks.

  • Url sorting in the report

    I've a table which contains two columns. The first column is a url and second column is report name corresponding to the url. I generate a htmldb sql report, with these two columns, first column is url and second column is the report name. Since the url name would be long and cryptic, I want to use the report name as display name for the first column also, but the underlying link is still url, which the user can click to generate report. Now, the problem comes when I try to sort on fisrt colunm, which is url and that does not make sense. Is there a way I can click the first column header for sorting, but the sorting should actually happen on second column, which is report name?. Then I can hide the second column and mimic the sorting as it's happening on the url display name. Any ideas are appreciated.
    thanks

    Jonathan,
    All the regions are based on the same SQL query:
    SELECT display_name, url
    FROM url_table
    For the first region (URL Hidden) in the Report Attributes page, I de-selected the 'Show' option for the url column and selected 'Sort' for the display_name column. Then I added a link to the display_name column such that the 'Link Text' was #DISPLAY_NAME#, the 'Target' was URL and the 'URL' was #URL#
    The second region (URL showing) was a copy of the first but without de-selecting the 'Show' option and the third region (URL hyperlinked) was a copy of the second region with the link on the url column instead of the display_name column ('Link Text' = #URL#).
    Hope this makes sense.
    Cheers,
    Bryan.

  • Need help in sorting a alphanumeric DB column in BO report.

    Hi All,
    We have a DB column (Data type = varchar2).. with values..
    1                               
    1
    1.1
    1.1.1
    1.1.1.1
    1.2
    1.2.1
    1.3
    1.3.1
    1.3.1.1.1
    Desired
    1
    1.1
    1.1.1
    1.1.1.1
    1.2
    1.2.1
    1.3
    1.3.1
    1.3.1.1.1
    2
    etc..
    We need to sort this column in BO report.. any idea..  we have sorted it in the Query which is giving right output in pl/sql developer but in BO sorting is not showing properly.
    Could you help please to achieve this?
    Thanks and Regards,
    Priyashree

    The Record Sort Expert appears when you choose the Record Sort Expert command from the Report menu.
    Use the Record Sort Expert to define how you want the records in your report to be sorted for printing. You can add and remove a sort field and define the sort direction (ascending or descending) for the data in your report.
    In my version Record Sort appears as a   A over a Z with Arrows pointing from A to Z, and Z to A.  It is next to group expert, which looks like a mountain with an arrow pointing up.  Both are on the "Expert" tool bar.

  • How can I sort lines of data (alphabetically) in the new pages 5.0?

    How can I sort lines of data (alphabetically) in the new pages 5.0?
    It was very simple to do in the previou version of pages.

    I'm not sure why people are torturing themselves with Pages 5 given the nearly universal outcry on this forum and the incredibly negative reviews elswhere, such as the App Store.
    Pages 4.3 should still be in an iWorks folder within your Applications folder.  Just use that.
    Please remember to tell Apple what we need from them at:
    http://www.apple.com/feedback/pages.html

  • Query a dataset in MS SQL Server Report Builder and get splitted output of one of the fields

    Hi experts,
    I have a dataset in MS SQL Server Report Builder containing some rows like the following:
    FIELD-1
    FIELD-2
    FIELD-3
    1
    efgh
    xjhg[R]ztazutsuz[R]9
    2
    abcd
    1234[R]abcd[R]5678
    What I need is:
    FIELD-1
    FIELD-2
    FIELD-3
    1
    efgh
    xjhg
    1
    efgh
    ztazutsuz
    1
    efgh
    9
    2
    abcd
    1234
    2
    abcd
    abcd
    2
    abcd
    5678
    Can this be done?
    I'll be very happy when one finds a solution.
    Kind regards,
    Peter

    try like this..
    Declare @ta table ([FIELD-1] int, [FIELD-2] nvarchar(100), [FIELD-3] nvarchar(100))
    insert into @ta
    select 1, 'efgh', 'xjhg[R]ztazutsuz[R]9' union all
    select 2, 'abcd', '1234[R]abcd[R]5678'
    select t.[FIELD-1],t.[FIELD-2], a.b.value('.','nvarchar(100)') as [FIELD-3] from @ta t
    Cross apply
    (select cast('<R><C>' + replace(t.[FIELD-3],'[R]','</C><C>')+ '</C></R>' as xml) as XStr ) x
    Cross apply x.xstr.nodes('R/C')a(b)
    Thanks,
    Saurabh 
    http://www.linkedin.com/in/sbhadauria http://www.experts-exchange.com/M_6313078.html

  • I can't sort a single column only (ignoring the next column)

    I can't sort a single column only (ignoring the next column) in NUMBERS

    Numbers sorting follows a database model in which each row is a 'record' rather than a collection of unrelated data items. When a table is sorted, the integrity of the individual records (rows) is maintained.
    If you need to sort a single column, that column (or its data) must be separated from the rest of the table.
    That can be done using copy/paste (as described above by Wayne), or by taking the column to be sorted out of the table, dropping it on the sheet to form a new, single column table, doing the sort, then returning the column to the original table.
    The 3 1/2 step process takes longer to describe than to do.
    Regards,
    Barry

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Can't get around this error after adding second dataset...A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset

    I added a dataset to an existing report and broke an aggregation.  In the old (i.e. single dataset) report, this expression below worked fine.  I wanted to get a distinct count of the vst_ext_id field when my educated field was like "VTE1*"
    = CountDistinct(IIF(Fields!educated.Value like "VTE1*", Fields!vst_ext_id.Value, Nothing))
    After adding a new dataset, this no longer works and I get the error " A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset".  Having done some research online, I found that I
    needed to specify my dataset explicitly and I thought this new expression might work, but still no success...
    = CountDistinct(IIF(Fields!educated.Value,"DataSet1" like "VTE12*", Fields!vst_ext_id.Value,"DataSet1", Nothing))
    Am I missing something?  Based on online responses, this explicit dataset naming convention seems to help most people, but it isn't working for me. 
    Thanks in advance!
    Brian

    I found the answer.  Apparently, my expression syntax was off.  This expression does the trick...
    = CountDistinct(IIF(Fields!educated.Value like "VTE12*", Fields!vst_ext_id.Value,Nothing),"DataSet1")
    I just happened upon this particular syntax searching online.  I was trying to specify the dataset name after each .value, but I never got that to work.   This is the only time I have found this particular syntax online. 

  • My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    My sister gave me her 1st gen iPad to see if I could solve an issue.  It won't turn on, and when it's plugged into a power cord there is a slow pulsing sort of flash that happens on the screen....any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe! Now see if it charges normally and after a period try to turn it on again. If the batter has been drained it could take 20 minutes or so for it to show that it is charging.
    Also considering if the battery need replacing!

  • An error has occurred during report processing. (rsProcessingAborted). Query execution failed for dataset 'DimUserWorkCentre'. (rsErrorExecutingCommand). The Cube either does not exists or has not been processed

    Hi,
    I'm having issues with the report created using SSAS cube.
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'DimUserWorkCentre'. (rsErrorExecutingCommand)
    The Operator_Performance cube either does not exist or has not been processed.
    I have searched through internet and tried all the solutions, but didn't worked for me.
    SSRS services running as NETEWORK SERVICE user.
    SSRS Execution running as a Different user, which is the login is used to logon ot that server. I have also verified this user has access to database. I'm using Shared DataSource(SSAS Source) for this report.
    Can any one please help me.
    Thank You,
    Praveen.
    Praveen

    Hello,
    Have you tried it to execute on report manager , Is your data source properly configured in Report Manager  and your report is mapped with Datset correctly?
    Have you executed the Dataset query MDX editor  now?
    What is the volume of data you are fetching in the report. Try it to execute in other than IE , I don't know the exact reason but some of our report with large volume of data  are failing on IE , on the other hand these reports are running fine Google
    Chrome
    blog:My Blog/
    Hope this will help you !!!
    Sanjeewan

  • When trying to connect to Airplay speakers I get error message "The  network connection timed out" although some sort of connection is made as the speaker is turned on.  Same thing with Apple TV.  Is the distance from my speaker/ TV the problem?

    When trying to connect from iTunes to Airplay speakers I get error message “The  network connection timed out” although some sort of connection is made as the speaker is turned on.  Same thing with Apple TV.  Is the distance between my PC and the speaker or the AppleTV the problem?

    Hi whitwick,
    If you are having issues with your network connection when attempting to use AirPlay, you may want to use the steps in this article to troubleshoot -
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS5209
    Thanks for using Apple Support Communities.
    Best,
    Brett L

Maybe you are looking for