string
7 TopicsFiltering text with > or <
I have software version information like version 11.0.2 and 11.0.10. If I want to filter to all versions 11.1.0 or later I don't see a good way to filter. Yes, I have broken it into three pieces major, minor, and patch, but for these two version examples when sorting as text 11.0.10 is actually earlier than 11.0.2 (as a string "10" < "2") My solution was to left pad each piece to 3 characters so that the version looks like 011.000.010 and 011.000.002 which works great for sorting, but not for filtering because I don't see a > or < operator, only for numeric values, only things like "contains" and "blank", etc. So what's my best option? Thanks!Solved989Views0likes5CommentsFind multiple substring DAX CONTAINSSTRING
Hello everyone, I need to find if the substrings "house", "home", "dewelling" appear in a long string column. Using CONTAINSSTRING I am able to find each word at a time- house= CONTAINSSTRING(table1[column1], "house"). Is there a way to look for more than one substring? Perhaps something like house= CONTAINSSTRING(table1[column1], "house" or "home" or "dewelling"). Thank you for any help!Solved60KViews0likes14CommentsMeasure to count columns that have the same strings of text in a different order
Hey Folks, I have a column of data that contains a topic or multiple topics that are seperated by ";" that may be in a different order. I'm trying to count the times particular combinations of topics are put together, i.e. As appears in regular table count Topic 1;Topic 2;Topic 3 - 1 Topic 3;Topic 1;Topic 2 - 1 Topic 4 - 1 Output I'm trying to get to: Topic 1;Topic 2;Topic 3 - 2 Topic 4 - 1 I have found the following solution on Stack Overflow that seems to be exactly what I'm talking about, however the context is for other databases than PowerBI / Power Query. r - Group strings that have the same words but in a different order - Stack Overflow I'm hoping that this is something that can be acheived via a measure rather than within power query. I already have a bridge table that lists all individual topics, so I'm wondering if its something I might be able to leverage as part of the meaure, but I'm very lost on this presently. Thank you for your help.621Views0likes2CommentsHelp with filtering table based on filter string
I hope someone can help with this problem. So I'm trying to create a DAX measure, that needs to filter some account numbers in a table based on a string. The string contains both ranges and specific account numbers, and looks like this: 01011..01090|01901..01902|01904..01959|01980..01998 I can then fetch that value in my measure with this variable: VAR FilterString = CALCULATE( SELECTEDVALUE( 'Account Schedule'[Totaling]), 'Account Schedule'[Row No_] = "01090" ) However, how do i then translate that string into a useable filter?777Views0likes5CommentsHow to extract string from name and create product group
Hey All, Need help creating dax formula or calculated column to extract product density. Any help is greatly appreciated! Need to go from left product column to right density group: Product Density A123 B1234 8Gbit 8 77/999 AE 1 AB 8Gbit A123 B12 4Gbit 16 7/999 ABCDE 1 AB 4Gbit A123 B1 2Gbit 16 77/999 AB 1 AB 2Gbit A123 B12346 512Gbit 8 77/99 ABCDE 512Gbit A123 B123 77/999 ABCDE 1TB 1TB Thanks in advance!Solved1.1KViews0likes2CommentsDelete rows based on filter
See image. I have a DAX function which creates a mailto string: MailTo = "mailto://"&CONCATENATEX(ALLSELECTED(Blad1),Blad1[Column1],"; ") So all values from Blad1[Column1] are shown in the string. Now i want to filter the mail adresses i selected. How can I do that?Solved710Views0likes2Comments