Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

How to Merge 2 Variables

Hi Community,

I wanted to merge 2 variables like below.

=$(vExp_ACCR_INCOME_DRAWN)  /   $(vDenominationValue)

I have tried like below

=$(vExp_ACCR_INCOME_DRAWN)   $(=chr47)) &   $(vDenominationValue)

but not worked out.

How to do '/'

1 Solution

Accepted Solutions
amit_saini
Master III
Master III

Try,

=($(vExp_ACCR_INCOME_DRAWN) ) /   ($(vDenominationValue) )


I think brackets are missing.


Thanks,AS

View solution in original post

6 Replies
MK_QSL
MVP
MVP

Isn't this working ?

Variable1 & '/' & Variable2

priyarane
Specialist
Specialist
Author

no

amit_saini
Master III
Master III

Check

Thanks,
AS

mpbtejada
Contributor III
Contributor III

Are you intending to return a text value or to compute a formula?

If you want text, encapsulate the variables in single quotes.

'$(vExp_ACCR_INCOME_DRAWN)'  & '/' & '$(vDenominationValue)'

amit_saini
Master III
Master III

Try,

=($(vExp_ACCR_INCOME_DRAWN) ) /   ($(vDenominationValue) )


I think brackets are missing.


Thanks,AS

amit_saini
Master III
Master III

This should work:

num(

     ($(vExp_ACCR_INCOME_DRAWN) ) / ($(vDenominationValue) )

     ,'###.###,')

Thanks,
AS