Forum Discussion
Remove error format value in query
- Anonymous1 year ago
Hi Anonymous
Thank you very much ryan_mayu for your prompt reply.
Below is a detailed Power Query M code example to help you retain only the numeric values in the '공사번호' column:
Here's some dummy data
Load your dataset in Power Query.
In the Power Query editor, click Advanced Editor.
Add the following code:#"Filtered Rows" = Table.SelectRows(Source, each Value.Is(Value.FromText([공사번호]), type number))Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
Thank you very much ryan_mayu for your prompt reply.
Below is a detailed Power Query M code example to help you retain only the numeric values in the '공사번호' column:
Here's some dummy data
Load your dataset in Power Query.
In the Power Query editor, click Advanced Editor.
Add the following code:
#"Filtered Rows" = Table.SelectRows(Source, each Value.Is(Value.FromText([공사번호]), type number))
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous1 year agoNot applicable
Hi,
can we filter multiple columns in one code?first column '공사번호' to number format and second column '준공예정일자' to date format.