<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Display attributes of 10 different single-row GP output tables on a single page? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710218#M103785</link>
    <description>&lt;P&gt;&lt;STRIKE&gt;Thanks! This brings to mind a related Python option:&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;Run a python script that consumes the 10 tables and outputs the results in a big blob of text in the python window that I could copy to an email. Not a very elegant solution; maybe a last resort.&lt;/STRIKE&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jun 2026 15:01:42 GMT</pubDate>
    <dc:creator>Bud</dc:creator>
    <dc:date>2026-06-26T15:01:42Z</dc:date>
    <item>
      <title>Display attributes of 10 different single-row GP output tables on a single page?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710079#M103768</link>
      <description>&lt;P&gt;I have 10 civil asset FCs: roads, sidewalks, sewers, more (Oracle SDE.ST_GEOMETRY EGDB).&lt;/P&gt;&lt;P&gt;And I have a model that clips the FCs using a subdivision polygon and outputs 10 FGDB standalone tables that have a single row of summarized stats about the assets in that subdivision. I can open the attribute table of each table and get the stats, and then manually enter the numbers into an email to our Finance department for financial reporting purposes.&lt;/P&gt;&lt;P&gt;Instead of opening the attribute table of each output table to get the values, I want a single page of stats that I can send to Finance via a printed PDF or some other method. Click a button, get a single page of stats, and manually send an email. I can't union all the outputs together into a single query/report, because each table/asset type has different fields.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How can I display the attributes of 10 different single-row GP output tables on a single page or screen?&lt;/STRONG&gt; For example, an ArcGIS Pro report, a single tab in an Excel spreadsheet, a Portal dashboard, or some other reporting software that can display multiple small reports on a single page.&lt;/P&gt;&lt;P&gt;Frequency: 20 runs per year.&lt;/P&gt;&lt;P&gt;Pro Idea:&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-pro-ideas/output-multiple-small-reports-on-the-same-page/idi-p/1710202/highlight/true" target="_self"&gt;Output multiple small reports on the same page/screen&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 14:24:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710079#M103768</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2026-06-26T14:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display attributes of 10 different single-row GP output tables on a single page?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710190#M103780</link>
      <description>&lt;P&gt;Thoughts about an SQL query approach:&lt;/P&gt;&lt;P&gt;Is it possible to write an ST_GEOMETRY SQL query that could clip line features like roads or sidewalks to a SD polygon?&lt;/P&gt;&lt;P&gt;I assume that's not possible for lines, since ST_Geometry SQL functions are limited, whereas it'd be easy for points. But if it were possible, then I could write ten SQL queries in SQL Developer, do a find-and-replace to change the subdivision ID in each query (or set up an SQL parameter to enter the subdivision number), then hit run to run all 10 queries in a single action. Copy the raw output text to an email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 14:19:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710190#M103780</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2026-06-26T14:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Display attributes of 10 different single-row GP output tables on a single page?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710198#M103783</link>
      <description>&lt;P&gt;If you can convert the model to a python script, this&amp;nbsp;&lt;EM&gt;should&lt;/EM&gt; be fairly trivial to do, if I'm understanding your needs correctly.&amp;nbsp; It would also work if there's a way to write a custom GP Tool and insert it into a model, but I genuinely can't remember if that's possible, since I really don't use Model Builder.&lt;/P&gt;&lt;P&gt;Some broad strokes/pseudocode:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import pathlib

tbls = [list of your 10 tables]
outFile = pathlib.Path(r'Path\To\Save\Output\Results.txt')

with outFile.open('w') as txt:
  # We're essentially producing a tab-separated CSV, so print all of your 
  # desired headings on this first line.  Make sure you don't forget that
  # line break \n at the end!  Since we're printing everything to a single
  # result file, I added a column to the beginning to write which source
  # table that row came from
  txt.write('Source\tColumn1\tColumn2\t...ColumnN\n')
  for tbl in tbls:
    with arcpy.da.SearchCursor(tbl, [fields]) as cursor:
      for row in cursor:
        txt.write(tbl)            # Write the table path to the Source column

        txt.write('\t'.join(map(str, row))) # Spin out all the column values 
                                            # to their respective columns,
                                            # and convert to string on-the-
                                            # fly, so join doesn't crash out. 
        # NOTE: This assumes all tables have the same columns. If not, this 
        # gets a little more complex.

        txt.write('\n')           # Write the newline to move on to the next
                                  # row.

    del cursor # They finally fixed the context managers for cursors, so this
               # line is obsolete as of (I think) Pro 3.7, and can be
               # removed.  Keep it for anything older, though.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another thing you could possibly do (if the schemas are the same between the 10 tables) is to run the Append tool to dogpile all of them into a single table, and then just output that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the schemas are different between the 10 tables, it might be helpful to see what we're looking at data-wise to figure out the simplest way to lay it all up at once.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 14:12:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710198#M103783</guid>
      <dc:creator>MErikReedAugusta</dc:creator>
      <dc:date>2026-06-26T14:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display attributes of 10 different single-row GP output tables on a single page?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710218#M103785</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;Thanks! This brings to mind a related Python option:&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;Run a python script that consumes the 10 tables and outputs the results in a big blob of text in the python window that I could copy to an email. Not a very elegant solution; maybe a last resort.&lt;/STRIKE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 15:01:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/display-attributes-of-10-different-single-row-gp/m-p/1710218#M103785</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2026-06-26T15:01:42Z</dc:date>
    </item>
  </channel>
</rss>

