Forum Discussion
If conditional multiplication
- Sep 09, 2023
Depending upon the situation, one possible solution is to write a named Lambda function
ExtractCurrencyFormatλ = LAMBDA(ref, LET( rawFormat, GET.CELL(7, ref), TEXTBEFORE(TEXTAFTER(rawFormat, "["), "]") ) )
The worksheet formula would be
= ExtractCurrencyFormatλ(currencyAmount) for a single value, or = MAP(currencyAmount, ExtractCurrencyFormatλ) for an array.
Reference:
How to find the currency format in a formula | MrExcel Message Board
Depending upon the situation, one possible solution is to write a named Lambda function
ExtractCurrencyFormatλ
= LAMBDA(ref,
LET(
rawFormat, GET.CELL(7, ref),
TEXTBEFORE(TEXTAFTER(rawFormat, "["), "]")
)
)
The worksheet formula would be
= ExtractCurrencyFormatλ(currencyAmount)
for a single value, or
= MAP(currencyAmount, ExtractCurrencyFormatλ)
for an array.
Reference:
How to find the currency format in a formula | MrExcel Message Board
- PeterBartholomew1Sep 09, 2023Silver Contributor
Hans, the board has suddenly decided that I should not be allowed to post pictures. Has any such thing happened to you or have I been singled out for demotion?
- cuongSep 11, 2023
Microsoft
I understand this was a known issue that's been fixed. Please let us know otherwise.- PeterBartholomew1Sep 12, 2023Silver Contributor
Yes. All is good now, thanks.
- HansVogelaarSep 11, 2023MVP
It looks like it has to do with the new community ranks such as Silver Contributor - see What’s New in the MTC? September 2023 – Community Ranks
I hope that the powers that be will correct this soon.
- HansVogelaarSep 09, 2023MVP
It hasn't happened to me, but as MVP I (like SergeiBaklan) probably have a higher permissions level than you.