Can you use ROUNDDOWN with TEXT together in a cell and maintain the format as a %

Cellanator

New Member
Joined
Dec 31, 2020
Messages
3
Office Version
  1. 2016
Is it possible to use ROUNDDOWN with Text in the same cell?
The problem I'm having is it changes the formatting from a % to something else.
Where it would show 100% now show's .999 and 1.0 when 100% is achieved.

My Formula in cell ...... =TEXT((L13/K13),"###%")&" PAID"

L13 = 24,117.02

K13 = 24,117.35

Shows 100% when not fully paid!

So I used the ROUNDDOWN FUNCTION, however I loose the % formatting if I add Text of "Paid" to the end.

=ROUNDDOWN((L13/K13),3)&" Paid" will show 0.999 Paid and 1.0 when 100% instead of showing 99.9 % and 100.0%

How can I use the Rounddown function with text or is there a better solution?

Dave
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi & welcome to MrExcel.
How about
Excel Formula:
=TEXT(rounddown(L13/K13,3),"###%")&" PAID"
 
Upvote 0
Solution
=TEXT(rounddown(L13/K13,3),"###%")&" PAID" worked perfectly! Thank you very Much.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,213,524
Messages
6,114,117
Members
448,549
Latest member
brianhfield

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top