Reputation:
So I have a data and I have to select columns which starts with "Rain" using dataflow. Is there a way we can do that?
Upvotes: 0
Views: 1605
Reputation: 6104
You can achieve this using select
transformations. The following is a demonstration of how you can achieve this.
select transformation
. In this, remove all the mapped columns. Click on Add Mapping -> Rule-based Mapping
Rain
. The rule is startsWith(name,'Rain')
and the output column name is $$
(indicates the same name as source column name)Rain
are selected.Upvotes: 1