<?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: How do I change shape and color based on two different attributes? And how do I fix the color bar? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371984#M77634</link>
    <description>&lt;P&gt;Ah okay so how are you doing the symbolizing in this case? Or rather, how are you getting your CSV into Pro in a way that you can symbolize points? And yeah feel free to send it as a CSV, I can try to replicate your process.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jan 2024 22:25:30 GMT</pubDate>
    <dc:creator>ZachBodenner</dc:creator>
    <dc:date>2024-01-18T22:25:30Z</dc:date>
    <item>
      <title>How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371829#M77605</link>
      <description>&lt;P&gt;Hello! I have ArcGIS Pro version 3.2, I believe. I'm trying to plot temperature data as a color and then sensor type as a shape. Say, for example, I have 8 sensor types. There are two I care about and want to make a triangle, the rest are circles. I think I found a way to do that by using "Unique Value" in the Symbology pane, then just changing the ones I want to which shapes I want. Then I want color to vary by temperature.&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;I want to the "Vary symbology by attribute" pane to change color according to temperature. But then it makes the color look confusing, where it only labels the highest and lowest values, and the rest are just in the middle. I want to have the color bar range from 17-23 by 0.5 deg C intervals. Is there a way to do this? I tried in Arcade but got an error, so I may not know how to type in it. Also, just in general, is there any easier way to do this whole thing?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Screenshot for confusing color bar legend:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraceKowalski_0-1705603709900.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92046i326BEE0EBB24FF81/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GraceKowalski_0-1705603709900.png" alt="GraceKowalski_0-1705603709900.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Screenshot of attempted Arcade code and error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraceKowalski_1-1705603794149.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92047iD869E5DB81BE92E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GraceKowalski_1-1705603794149.png" alt="GraceKowalski_1-1705603794149.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would then go through and write code for it up until number 23, but I can't get past this first error. Thank you for any help!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 18:51:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371829#M77605</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-18T18:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371832#M77606</link>
      <description>&lt;P&gt;You're on the right track with your arcade expression, just needs some syntax tweaking. Try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var temp = $feature.Temp
When(temp &amp;gt;17 &amp;amp;&amp;amp; temp &amp;lt;17.5,17,...,FINAL VALUE)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A When statement like this would enable you to group all of your bins together in one expression. replace the ... in the code above with as many pairs as necessary, so that you have a statement (eg. temp &amp;lt;17 &amp;amp;&amp;amp; temp&amp;lt;17.5) and a return, which comes after the comma. When requires a default value at the end, so any values not captured by your expression will get that value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Full disclosure, I haven't played around with varying symbology by attribute, but hopefully that Arcade helps you on the right track.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 19:02:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371832#M77606</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-18T19:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371873#M77611</link>
      <description>&lt;P&gt;Thank you for the help! I did get the Arcade code working, but it is unfortunately not improving the appearance of my legend. The whole middle group still does not get designated individual colors, and they just lump it all together.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the legend:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraceKowalski_0-1705607862385.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92054iBC68450DB3983B3E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GraceKowalski_0-1705607862385.png" alt="GraceKowalski_0-1705607862385.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And here is the code:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraceKowalski_1-1705607943447.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92055i5F0ABF79473E080A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GraceKowalski_1-1705607943447.png" alt="GraceKowalski_1-1705607943447.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 19:59:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371873#M77611</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-18T19:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371881#M77614</link>
      <description>&lt;P&gt;I'm not sure if this will solve the legend issue, but it looks like you might have a slight problem of "dropping" values because you don't use an "greater than or equal to" type notation. Here's the list of Arcade operators:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/guide/operators/" target="_blank"&gt;https://developers.arcgis.com/arcade/guide/operators/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For example, in the second pair of you When statement, you'd want temp&amp;nbsp;&lt;SPAN&gt;&amp;gt;= 17.5 instead of temp &amp;gt; 17.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also just to make your life easier, when you post code here, you can click the 3-dot-menu and then include your code using this button:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_0-1705608275943.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92058iD025EEC707BEE8A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_0-1705608275943.png" alt="ZachBodenner_0-1705608275943.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then it's easier for everyone to copy-paste your code instead of typing out your screenshot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try changing around your operators and see what that does.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 20:05:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371881#M77614</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-18T20:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371960#M77629</link>
      <description>&lt;P&gt;Thank you again! That was good to point out. I went through and added the equal to operators, but the legend sadly didn't change. I wonder if there's a more simple fix that I'm just missing. And thank you for pointing out how to include code! I'll do that here.&lt;/P&gt;&lt;P&gt;New code:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var temp = $feature.temp;
When(temp&amp;gt;17 &amp;amp;&amp;amp; temp&amp;lt;=17.5, 17.0, temp&amp;gt;17.5 &amp;amp;&amp;amp; temp&amp;lt;=18, 17.5, temp&amp;gt;18 &amp;amp;&amp;amp; temp&amp;lt;=18.5, 18.0, temp&amp;gt;18.5 &amp;amp;&amp;amp; temp&amp;lt;=19, 18.5, temp&amp;gt;19 &amp;amp;&amp;amp; temp&amp;lt;=19.5, 19.0, temp&amp;gt;19.5 &amp;amp;&amp;amp; temp&amp;lt;=20, 19.5, temp&amp;gt;20 &amp;amp;&amp;amp; temp&amp;lt;=20.5, 20.0, temp&amp;gt;20.5 &amp;amp;&amp;amp; temp&amp;lt;=21, 20.5, temp&amp;gt;21 &amp;amp;&amp;amp; temp&amp;lt;=21.5, 21.0, temp&amp;gt;21.5 &amp;amp;&amp;amp; temp&amp;lt;=22, 21.5, temp&amp;gt;22 &amp;amp;&amp;amp; temp&amp;lt;=22.5, 22.0, temp&amp;gt;22.5 &amp;amp;&amp;amp; temp&amp;lt;=23, 22.5, temp&amp;gt;23 &amp;amp;&amp;amp; temp&amp;lt;=23.5, 23.0, temp&amp;gt;23.5 &amp;amp;&amp;amp; temp&amp;lt;=24, 23.5, 24);&lt;/LI-CODE&gt;&lt;P&gt;New legend (still looks the same where the middle is not separated):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GraceKowalski_0-1705614759823.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92081i64BE42B69F1E98BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GraceKowalski_0-1705614759823.png" alt="GraceKowalski_0-1705614759823.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 21:52:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371960#M77629</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-18T21:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371968#M77631</link>
      <description>&lt;P&gt;Are you able to package your data as a shapefile? I'd be interested to bring this into my Pro and check it out.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 22:02:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371968#M77631</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-18T22:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371972#M77632</link>
      <description>&lt;P&gt;I've been using it as a csv. If you want it in a shapefile, I'll have to learn how to do that first. I'm pretty new to ArcGIS, if you couldn't tell lol.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 22:09:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371972#M77632</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-18T22:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371984#M77634</link>
      <description>&lt;P&gt;Ah okay so how are you doing the symbolizing in this case? Or rather, how are you getting your CSV into Pro in a way that you can symbolize points? And yeah feel free to send it as a CSV, I can try to replicate your process.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 22:25:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1371984#M77634</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-18T22:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372002#M77637</link>
      <description>&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;Sensor Type&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;Latitude&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;Longitude&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;Temp&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;AS&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.32802&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.62378&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;17.2437&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;CT&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.29136&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.63649&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;20.4375&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;GB&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.31143&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.6008&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;21.1562&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;AS&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.31575&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.61765&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;18.5781&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;DQ&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.32725&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.61148&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;20.6652&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="21.428571428571427%" height="19"&gt;DQ&lt;/TD&gt;&lt;TD width="26.53061224489796%"&gt;39.32678&lt;/TD&gt;&lt;TD width="28.57142857142857%"&gt;76.67794&lt;/TD&gt;&lt;TD width="23.46938775510204%"&gt;19.7483&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;This is an example table because I don't know how to attach the csv file. But I saved it as a csv, then used the "Add Data" button to add it into my GIS project. Then I used the "XYtoPoint" tool and used the longitude as x and latitude as y to plot each point. Then I did what I stated in my initial post. I only care about sensors DQ and GB. So I went and used "&lt;SPAN&gt;Unique Value" in the Symbology pane, just changing the ones I want to triangles. Then I went&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;to the "Vary symbology by attribute" pane to change color according to temperature.&amp;nbsp;And I used the arcade code to try and fix the legend.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 23:52:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372002#M77637</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-18T23:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372201#M77654</link>
      <description>&lt;P&gt;Ok got it, I'll let you know what I figure out!&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you're writing a post or replying, there's a file uploader at the bottom.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_0-1705671150570.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92164i1359A0558AAF712F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_0-1705671150570.png" alt="ZachBodenner_0-1705671150570.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 13:32:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372201#M77654</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-19T13:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372251#M77661</link>
      <description>&lt;P&gt;Ok so the legend getting formatted this way kind of looks like expected behavior, at least when you check the "Show Legend" button in the Vary Symbology by Attribute pane. The next question is: what is the end result of the map you're making? There's a variety of ways to re-frame the issue you're having, but it would be helpful to know what you want the result to look like.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, you could just use the arcade you have now to set the available ranges, then change the symbols of the points to triangles:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_1-1705675640838.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92190i4C78C518C7E0F7D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_1-1705675640838.png" alt="ZachBodenner_1-1705675640838.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then if you only wanted some of the sensor types, you could use a definition query to only include the values you need:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_3-1705675714646.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92193i8F34ED6E81D06D47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_3-1705675714646.png" alt="ZachBodenner_3-1705675714646.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_2-1705675696931.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92192i0FD61BC63B750A45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_2-1705675696931.png" alt="ZachBodenner_2-1705675696931.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When it comes to the legend, are you going to need to make a layout and print this? Will there be a lot of changes? You can manually build/edit a legend in the layout if you needed to.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 14:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372251#M77661</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-19T14:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372357#M77667</link>
      <description>&lt;P&gt;Thank you so much for spending all the time trying to figure this out! The end result of the map I'm trying to make is for DQ and GB to be triangles, while the rest are all circles. Then I want all points (circles and triangles) to share a color bar based on temperature. I was able to do all of that but, as was the recurring problem, the legend looked bad. I am going to make a layout, not to print, but to put in some presentations, where I want a legend present. Unsure of how many changes will occur. If you think manually editing a legend in layout is the best approach, I would appreciate any insight on how to do so! Thank you again!!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 17:06:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372357#M77667</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-19T17:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372375#M77668</link>
      <description>&lt;P&gt;Sure, okay so I don't really know exactly what the different sensor types are, but another option would be to copy the layer by right clicking it in the table of contents, and pasting it there so you have two of the same layer. Then you can switch the definition query of your new layer to be the opposite (ie. show only AS and CT) and change those symbols to circles:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_0-1705685269141.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92230iA9D0965396F68A03/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_0-1705685269141.png" alt="ZachBodenner_0-1705685269141.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then, to make your legend easier to manage in the layout, you can change the Label value in the symbology pane (mine will look different than yours because you have more values in your CSV but you see the idea):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_1-1705685348415.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92232i61969A12D8358984/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_1-1705685348415.png" alt="ZachBodenner_1-1705685348415.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_2-1705685361504.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/92233i2F8DFCC69F950664/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_2-1705685361504.png" alt="ZachBodenner_2-1705685361504.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then you go ahead and add a legend to your layout and there will be two legend items, one for each layer (and therefore groups of sensors).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 17:30:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372375#M77668</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-19T17:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372409#M77675</link>
      <description>&lt;P&gt;Ah! That sounds great!! Thank you so much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 18:35:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372409#M77675</guid>
      <dc:creator>GraceKowalski</dc:creator>
      <dc:date>2024-01-19T18:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change shape and color based on two different attributes? And how do I fix the color bar?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372432#M77676</link>
      <description>&lt;P&gt;Great! If you consider that a solution the the question you initially proposed, make sure the click the Accept as Solution button so that others who find this can use it as reference.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 18:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-do-i-change-shape-and-color-based-on-two/m-p/1372432#M77676</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-01-19T18:59:17Z</dc:date>
    </item>
  </channel>
</rss>

