<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Acumatica Report Designer Format Function - Acumatica Report Designer				            </title>
            <link>https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/</link>
            <description>Acumatica User Group Forums</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 15 Sep 2026 18:02:53 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Acumatica Report Designer Format Function</title>
                        <link>https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-11267</link>
                        <pubDate>Thu, 25 Apr 2024 01:26:08 +0000</pubDate>
                        <description><![CDATA[Hi,
This should work:
=IIf(=&#039;MIL COUNTY SALES TAX&#039;,format(&#039;{0}:{1:C}{br}&#039;,, ),&#039;&#039;)+IIf(=&#039;MILWAUKEE CITY SALE...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>This should work:</p>
<p>=IIf(='MIL COUNTY SALES TAX',format('{0}:{1:C}{br}',, ),'')<br />+IIf(='MILWAUKEE CITY SALES TAX',format('{0}:{1:C}{br}',, ),'')<br />+IIf(='WI 5 PERCENT',format('{0}:{1:C}{br}',, ),'')</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/acumatica-report-designer/">Acumatica Report Designer</category>                        <dc:creator>manya2000</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-11267</guid>
                    </item>
				                    <item>
                        <title>RE: Acumatica Report Designer Format Function</title>
                        <link>https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-11227</link>
                        <pubDate>Wed, 27 Mar 2024 15:47:07 +0000</pubDate>
                        <description><![CDATA[I am running into errors with the format formula below. Does anyone have any tips on how to get this to work? I want the format to be $7.44 and without any formatting its 7.4400.  I input $#...]]></description>
                        <content:encoded><![CDATA[<p>I am running into errors with the format formula below. Does anyone have any tips on how to get this to work? I want the format to be $7.44 and without any formatting its 7.4400.  I input $#,##0.00 in the format field in properties and it didn't work. </p>
<p> </p>
<p> </p>
<p>=IIf(='MIL COUNTY SALES TAX',+':'+ Format('{$#,##0.00}', )+'{br}','')<br />+IIf(='MILWAUKEE CITY SALES TAX',+':'+ Format('{$#,##0.00}', )+'{br}','')<br />+IIf(='WI 5 PERCENT',+':'+ Format('{$#,##0.00}', )+'{br}','')</p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/acumatica-report-designer/">Acumatica Report Designer</category>                        <dc:creator>LJB</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-11227</guid>
                    </item>
				                    <item>
                        <title>Acumatica Report Designer Format Function</title>
                        <link>https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-6661</link>
                        <pubDate>Thu, 04 Jun 2020 14:36:35 +0000</pubDate>
                        <description><![CDATA[The Format function in Report Designer is pretty flexible, but not that intuitive.
Here are a couple of examples from the Sales Order (SO641010) report to help get you started.

Example #...]]></description>
                        <content:encoded><![CDATA[<p>The <span style="text-decoration: underline">Format</span> function in Report Designer is pretty flexible, but not that intuitive.</p>
<p>Here are a couple of examples from the <span style="text-decoration: underline">Sales Order (SO641010)</span> report to help get you started.</p>
<hr />
<p><strong>Example #1</strong></p>
<pre contenteditable="false">Format('{0} {1}', , '{br}'+)</pre>
<p>You can see that the first argument to the Format function is a string: '{0} {1}'</p>
<p>In this string, the {0} and {1} are placeholders telling the function that the values will come as the next two arguments to the <span style="text-decoration: underline">Format</span> function.</p>
<p>In the last argument you can see that {br} is used which simply tells it to print a new line.</p>
<p>The printed result will be SOLine.InventoryID on one line and SOLine.TranDesc on the second line.</p>
<p>You could also do something like this which would print SOLine.InventoryID, then a colon, then a space, then SOLine.TranDesc:</p>
<pre contenteditable="false">Format('{0}: {1}', , )</pre>
<hr />
<p><strong>Example #2</strong></p>
<pre contenteditable="false">=Format('{0:0.00}', Round(,1))</pre>
<p>In this example the string in the first argument includes a format code about how to format the second argument.</p>
<p>The first 0 in {0:0.00} is the argument number which grabs this value: Round(,1)</p>
<p>The 0.00 in {0:0.00} is how the argument should be formatted.</p>
<p>There's a nice formatting section in the S130 Course on Acumatica University showing the various formatting codes (for numbers, dates, etc.) that can be used.</p>
<hr />
<p><strong>Example #3</strong></p>
<pre contenteditable="false">=Format('Last Sale on {0:MM/dd/yyyy}',)</pre>
<p>This is the same as Example #2 in that we're formatting the value, but now I've added additional text around the value.</p>
<p>Also, I wanted to show an example of formatting a Date field.</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.augforums.com/forums/acumatica-report-designer/">Acumatica Report Designer</category>                        <dc:creator>Tim Rodman</dc:creator>
                        <guid isPermaLink="true">https://www.augforums.com/forums/acumatica-report-designer/acumatica-report-designer-format-function/#post-6661</guid>
                    </item>
							        </channel>
        </rss>
		