Forum Discussion
count text values in columns
- 4 years ago
Hi IbrahimHakim ,
1. You can create the custom column in Power Query.
= List.Count(List.Select( List.Skip( Record.ToList(_),1), each _ <> null and _ <> ""))2. Create a measure.
- Select [Job Posting ID] column, then unpivot other columns.
- Create the measure.
Measure = CALCULATE ( COUNT ( 'Table (2)'[Value] ), 'Table (2)'[Value] <> BLANK () )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi IbrahimHakim ,
1. You can create the custom column in Power Query.
= List.Count(List.Select( List.Skip( Record.ToList(_),1), each _ <> null and _ <> ""))
2. Create a measure.
- Select [Job Posting ID] column, then unpivot other columns.
- Create the measure.
Measure = CALCULATE ( COUNT ( 'Table (2)'[Value] ), 'Table (2)'[Value] <> BLANK () )
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.