<?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: Why did Excel auto added the “@” sign? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Why-did-Excel-auto-added-the-sign/m-p/112987#M50605</link>
    <description>&lt;P&gt;The @ symbol is automatically added by Excel when working with structured references or arrays in certain versions of Excel, particularly when using dynamic arrays and tables. The @ symbol is used to reference a single value in an array or table. However, if you want to avoid the @ symbol being added to your formula, you can use the following approaches:&lt;/P&gt;&lt;H3&gt;1. &lt;STRONG&gt;Using Array Formula (Legacy Array Formulas)&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;You can enter the formula as an array formula by pressing Ctrl + Shift + Enter instead of just Enter when you input the formula. Excel will treat the formula as an array formula, which should prevent the @ symbol from being added automatically.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;How to do it:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Select the cell where you want to enter the formula.&lt;/LI&gt;&lt;LI&gt;Paste the formula:&lt;DIV class=""&gt;&lt;DIV class=""&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Void Checks'!A:A&amp;amp;'Void Checks'!B:B,0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Cashed Checks'!A:A&amp;amp;'Cashed Checks'!B:B,0))))),$O$1,$P$1))&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;Instead of pressing Enter, press Ctrl + Shift + Enter. This will enter the formula as an array formula, and Excel will surround the formula with curly braces {}.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;2. &lt;STRONG&gt;Using Explicit Array Syntax&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;For versions of Excel that support dynamic arrays (Excel 365 or Excel 2019), you can explicitly tell Excel to treat the formula as an array without adding @ by using the array syntax.&lt;/LI&gt;&lt;LI&gt;Simply make sure the formula references are correct and that you are not referencing individual cells but entire ranges or columns.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;3. &lt;STRONG&gt;Using INDIRECT Function (Alternative Approach)&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;As a workaround, you can use the INDIRECT function to avoid Excel interpreting part of the formula as a table reference.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,INDIRECT("'Void Checks'!A:A")&amp;amp;INDIRECT("'Void Checks'!B:B"),0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,INDIRECT("'Cashed Checks'!A:A")&amp;amp;INDIRECT("'Cashed Checks'!B:B"),0))))),$O$1,$P$1))&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;The INDIRECT function converts the reference to a text string, which helps avoid the automatic @ symbol insertion.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;By following these methods, you should be able to prevent Excel from automatically adding the @ symbol to your formula. If one approach doesn't work, try another, depending on your specific version of Excel and its behavior.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Aug 2024 09:19:35 GMT</pubDate>
    <dc:creator>Parthiban_Viatris24</dc:creator>
    <dc:date>2024-08-09T09:19:35Z</dc:date>
    <item>
      <title>Why did Excel auto added the “@” sign?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Why-did-Excel-auto-added-the-sign/m-p/112878#M50547</link>
      <description>&lt;P&gt;&lt;SPAN&gt;When I write below formula into excel its auto adding&amp;nbsp;@ symbol. How to avoid this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried using set cell value and also placed value in collection, and tried write collection to excel as well&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expected:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Void Checks'!A:A&amp;amp;'Void Checks'!B:B,0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Cashed Checks'!A:A&amp;amp;'Cashed Checks'!B:B,0))))),$O$1,$P$1))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Result: (with&amp;nbsp;@ symbol)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;@&lt;/STRONG&gt;&lt;/FONT&gt;'Void Checks'!A:A&amp;amp;'Void Checks'!B:B,0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;@&lt;/STRONG&gt;&lt;/FONT&gt;'Cashed Checks'!A:A&amp;amp;'Cashed Checks'!B:B,0))))),$O$1,$P$1))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 12:01:35 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Why-did-Excel-auto-added-the-sign/m-p/112878#M50547</guid>
      <dc:creator>vchinthakindi</dc:creator>
      <dc:date>2024-08-05T12:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why did Excel auto added the “@” sign?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Why-did-Excel-auto-added-the-sign/m-p/112987#M50605</link>
      <description>&lt;P&gt;The @ symbol is automatically added by Excel when working with structured references or arrays in certain versions of Excel, particularly when using dynamic arrays and tables. The @ symbol is used to reference a single value in an array or table. However, if you want to avoid the @ symbol being added to your formula, you can use the following approaches:&lt;/P&gt;&lt;H3&gt;1. &lt;STRONG&gt;Using Array Formula (Legacy Array Formulas)&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;You can enter the formula as an array formula by pressing Ctrl + Shift + Enter instead of just Enter when you input the formula. Excel will treat the formula as an array formula, which should prevent the @ symbol from being added automatically.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;How to do it:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Select the cell where you want to enter the formula.&lt;/LI&gt;&lt;LI&gt;Paste the formula:&lt;DIV class=""&gt;&lt;DIV class=""&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Void Checks'!A:A&amp;amp;'Void Checks'!B:B,0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,'Cashed Checks'!A:A&amp;amp;'Cashed Checks'!B:B,0))))),$O$1,$P$1))&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;Instead of pressing Enter, press Ctrl + Shift + Enter. This will enter the formula as an array formula, and Excel will surround the formula with curly braces {}.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;2. &lt;STRONG&gt;Using Explicit Array Syntax&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;For versions of Excel that support dynamic arrays (Excel 365 or Excel 2019), you can explicitly tell Excel to treat the formula as an array without adding @ by using the array syntax.&lt;/LI&gt;&lt;LI&gt;Simply make sure the formula references are correct and that you are not referencing individual cells but entire ranges or columns.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;3. &lt;STRONG&gt;Using INDIRECT Function (Alternative Approach)&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;As a workaround, you can use the INDIRECT function to avoid Excel interpreting part of the formula as a table reference.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;=IF(ISNUMBER(SEARCH($N$1,(INDEX('Void Checks'!L:L,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,INDIRECT("'Void Checks'!A:A")&amp;amp;INDIRECT("'Void Checks'!B:B"),0))))),$N$1,IF(ISNUMBER(SEARCH($O$1,(INDEX('Cashed Checks'!F:F,MATCH('Printed Checks'!B2&amp;amp;'Printed Checks'!D2,INDIRECT("'Cashed Checks'!A:A")&amp;amp;INDIRECT("'Cashed Checks'!B:B"),0))))),$O$1,$P$1))&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;The INDIRECT function converts the reference to a text string, which helps avoid the automatic @ symbol insertion.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;By following these methods, you should be able to prevent Excel from automatically adding the @ symbol to your formula. If one approach doesn't work, try another, depending on your specific version of Excel and its behavior.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 09:19:35 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Why-did-Excel-auto-added-the-sign/m-p/112987#M50605</guid>
      <dc:creator>Parthiban_Viatris24</dc:creator>
      <dc:date>2024-08-09T09:19:35Z</dc:date>
    </item>
  </channel>
</rss>

