Announcements
I need to get the sum of the first field minus the second field, but I'm only getting '0'.Field 1 has - "$" & Edit_PO_Ex_Factory_Price2_Fld.TextField 2 has - "(" & Edit_PO_Deposit_Request_Fld.Text & ")"Total has - Text(Sum(Invoice_Total_Price_Fld.Text) - Text(Invoice_Total_Price_Fld_2.Text))
please try the following
Value(Substitute(Edit_PO_Ex_Factory_Price2_Fld.Text, "$", "")) - Value(Substitute(Substitute(Edit_PO_Deposit_Request_Fld.Text, "(", ""), ")", ""))
u need to change the text into a number format using the Value() function
Let me know if my answer helped solving your issue.If it did please accept as solution and give it a thumbs up so we can help others in the community.Greetings
Yep, that did it.It appears as - 242978.03Can the formula be updated so that it appears as - $242,978.03
please try this:
Text(Value(Substitute(Edit_PO_Ex_Factory_Price2_Fld.Text, "$", "")) - Value(Substitute(Substitute(Edit_PO_Deposit_Request_Fld.Text, "(", ""), ")", "")), "$#,###.00")
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 358 Most Valuable Professional
11manish 207 Super User 2026 Season 2
MS.Ragavendar 150 Super User 2026 Season 2