Hey Jeff,
Thanks for your explanation. We can’t change the keyframe value via expression. However, we can get what you want without even including keyframes.
You can try this on your masterNull’s position without keyframes on any layers. “TRICODE” should be a layer control effect applied to the masterNull.
var target = effect("TRICODE")("Layer");
var lip = thisLayer.inPoint;
linear(time, lip, lip+framesToTime(30), value, target.transform.position);
It should work for scale as well. Just change transform.position to transform.scale. Let me know if it works! 🙂