Unable to get Data Structure to share across BPs

Im trying to use a data structure to manage information easier and saw that many tutorials mention you can break out the created data struct, set a specific variable and connect them using “SetMembers”.

Doing this inside a blueprint works great, but trying to call the same data structure elsewhere just outputs the default values.

Ive read that by using the (ref) of this can help, but this wouldn’t output default values.

Anyone able to offer some assistance?

Structs are usually passed by value (copy) in BP, can you show us what you’re trying to do/your current BP setup?