我在excel中有一个列,其中包含多种会计格式的数据。 例如 25美元 140卢比 CNY 74
在公式栏中它只显示值而不是符号。你能不能请我帮助我从细胞中提取这些符号的公式。我不想运行VBA代码或创建用户功能。
答案 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”);“”)
..
答案 1 :(得分:-1)
使用文本函数获取单元格格式。
=Text(A1,"CopyPasteA1CellFormattingHere")
将A1更改为您想要的细胞参考。