Keep Text Value but show other thing

Unexpc

Active Member
Joined
Nov 12, 2020
Messages
496
Office Version
  1. 2019
Platform
  1. Windows
Hi guys
any formula that can Keep a text value but show another thing?
for example i write New Customer in a cell, but show hinzufügen?
it means excel find out this cell fill with New Customer but show hinzufügen
this question i asked for not another language symbol in vba code, and i want the formula for this cause
 

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.
An Excel formula can either contain a formula OR a hard-coded value, but never both at the same time.
Numeric entries can be formatted to display differently than entered (i.e. think of dates).
But I don't know of any way to display a text value differently than entered, while still maintaining the original text entered.
You could use VBA code to automatically convert entries to something else, but then it would be changed and not maintain the original text entered.
 
Upvote 0
You could apply conditional formatting with a rule like
Excel Formula:
=A1="New Customer"
That applies a custom number format of
Excel Formula:
;;;"hinzufügen"
 
Upvote 0
Solution
You could apply conditional formatting with a rule like
Excel Formula:
=A1="New Customer"
That applies a custom number format of
Excel Formula:
;;;"hinzufügen"
Awesome, This is correct, Thank You
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,977
Members
449,200
Latest member
Jamil ahmed

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