Can I "Get data table column names"?

Is there a way to “Get data table column names” similar to the “Get data table row names” node in Blueprint?

I have not found a way to do this by breaking the struct since that would return the value of the element in the column and not the column name itself.

No, there are no way to do that, as far as i know. And i cant even come up with the use case for such a feature.

The use case is based on being able to use the columns as questions that are not hardcoded and can be different for different imported CSV-files.

After import everything should be handled in the blueprint.


Case 1:

,How many wheels?, How fast?

Bike,2,30

Motorcycle,2,200

Car_old,4,90

Car_new,4,200

Question1: How many wheels? Answer: 4

Question 2: How fast? Answer: 200

That will result in Car_new as only option.


Case 2 which will us the exact same code:

,How many legs?, How fast?

Human,2,30

Dog,4,50

Horse,4,70

Spider,8,20

Question1: How many legs? Answer: 4

Question 2: How fast? Answer: 70

That will result in Horse as only option.

No, i dont think it possible in blueprints. You still need to hardcode to connect “legs” and int value in struct. Which means to being able to ask what animal has amount of legs you would need to make a function for it.