How can I remove a constant from a cell?

  • Thread starter Thread starter ac
  • Start date Start date
A

ac

I have a spreadsheet that has been updated and now sent to me for formatting
and formula auditing but along the way someone entered in a constant variable
that is not needed but is preventing my actual calculations from showing.

Can anyone offer any insight on how I can remove these non needed constants?
 
What is a 'constant variable'?

I think you need to divulge more information or give more details about the
issue.

Just a random thought here, but you may try something like this:
=SUBSTITUTE(A1,"-","")

That would get rid or all '-' characters in a cell.

If, for instance, you wanted to find everything to the left of a certain
character (maybe a constant variable), such as the letter 'a', you could try
a function like this:

=LEFT(A1,FIND("a",A1)-1)


Hope that helps you a bit.

Regards,
Ryan--
 
Ryan,

Thanks! When I hit formula auditing that is what showed up: constant
variable.
It is kind of "hiding" the 1 for now and letting me input different numbers.

Thanks again!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top