Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Saxon10
Post Prodigy
Post Prodigy

Finding the space after the text

Hi,

 

I have item column that item column contain text & number. The item column conatin the sapce after the text(item).

I would like to know the no of spaces added after the text.

 

Capture.PNG

 

ItemDesired Result (No Space)
123450
12345  1
12345-001 1
456   3
345  2
124-pkds 1
124-001iv0
123450
4356780
2 ACCEPTED SOLUTIONS
PhilipTreacy
Super User
Super User

Hi @Saxon10 

 

Download sample PBIX file

 

This will work in Power Query.  Create a new column with this code.  A full sample query is in the file above.

 

= Table.AddColumn(Source, "Num Spaces", each Text.Length([Item]) - Text.Length(Text.Trim([Item])))

 

countspace.png

 

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

PhilipTreacy
Super User
Super User

Hi @Saxon10 

Create a Calculated Column with this

NumSpaces = LEN([Item])-LEN(TRIM([Item]))

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

4 REPLIES 4
PhilipTreacy
Super User
Super User

Hi @Saxon10 

Create a Calculated Column with this

NumSpaces = LEN([Item])-LEN(TRIM([Item]))

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


PhilipTreacy
Super User
Super User

Hi @Saxon10 

 

Download sample PBIX file

 

This will work in Power Query.  Create a new column with this code.  A full sample query is in the file above.

 

= Table.AddColumn(Source, "Num Spaces", each Text.Length([Item]) - Text.Length(Text.Trim([Item])))

 

countspace.png

 

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Hi, 

 

Thank you so much for your help and sorry for the late reply. Your solution is working very well. 

Thanks for your quick reply.

 

I would like to achieve the same result by using DAX Measure and New calculated column.

 

Can you please advise.

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.