You can try this:
=ReportItems!textbox3.value
or
You should be able to share a value in a hidden textbox using code.
Create a hidden textbox. Add the expression =Code.SetValue(mytextboxcontent) to the textbox.
Add the expression =Code.GetValue() to the matrix.
Create 2 functions
public myval as object
function setValue(value as object) as object
myval = value
return value
end function
function getValue() as object
return myval
end function
No comments:
Post a Comment