使用excel中的公式提取会计/货币符号

时间:2017-08-31 05:07:46

标签: excel excel-formula excel-2010 excel-2007

我在excel中有一个列,其中包含多种会计格式的数据。 例如 25美元 140卢比 CNY 74

在公式栏中它只显示值而不是符号。你能不能请我帮助我从细胞中提取这些符号的公式。我不想运行VBA代码或创建用户功能。

2 个答案:

答案 0 :(得分:0)

使用以下用户定义的函数,您可以将值作为包含货币符号的文本获得:

Function GetTextValue(ByVal arg As Range) As String
     '//Cell value (or top left cell value if range is more than one cell)
     GetTextValue = arg.Cells(1, 1).Text 
End Function

您可以用替换项替换该值,并仅获取货币:

= SUBSTITUTE(C2; TEXT(B2;“#。## 0,00”);“”)

..

enter image description here

答案 1 :(得分:-1)

使用文本函数获取单元格格式。

=Text(A1,"CopyPasteA1CellFormattingHere")

将A1更改为您想要的细胞参考。