Returning null member when concatenating
Content
Hello Everyone!
I am working on a new script to concatenate a number to a string in order to return the cross dim value of a driver.
In the provided code snippet, I have stepped through the concatenation process.
When hardcoding the "Salary Grade" member, I get the desired value.
When I try to dynamically build the "Salary MidPoint Grade: 10" string, @member(@concatenate(@name("Salary MidPoint: Grade "), @name(@member("Salary Grade")))) is null.
Can someone please provide some guidance on what I am missing?
Thanks!
jg
Version
pbcsCode Snippet
Fix("Current Fcst")
    Fix("FY18", "100.0000", "E100484", "No Business Unit", "BegBalance", "Working");
		"Adjusted Annual Salary"(
        
            /*Returns 10*/
            "Adjusted Annual Salary" = @member("Salary Grade");
            
            /*Returns the correct salary midpoint for grade 10*/
            "Adjusted Annual Salary" = "Salary                
            Tagged:
            
        
0