Forum Discussion

abc_777's avatar
abc_777
Solution Specialist
4 years ago
Solved

hi

Spoiler
Hi,

I have column that doesnt have 11 digit phone number. and i want to pick only field that has 11 digits mobile number
not empty or only one or two digit in that field.

what would be the measure.
I know I have wrong to following measure. please correct me just to pick value which has 11 disig mobile numbers only to show on card

Mobile Count = IF(hasonevalue('bm_retail_t ssummary'[MOBILE_NO]), DISTINCTCOUNT('bm_retail_t ssummary'[MOBILE_NO]))


 

  • Hi abc_777 ,

     

    The calculated columns are not visible in the Power Query Editor. You can create the custom column in Power Query and then filter for rows with a value of 1.

    CustomColumn = if Text.Length([MOBILE_NO]) = 11 then 1 else 0

     

    Or create a calculated column and then filter.

     

    CalculateColumn = IF ( LEN ( [MOBILE_NO] ) = 11, 1, 0 )

     

    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.

     

     

5 Replies

  • truptis's avatar
    truptis
    Community Champion

    Hi @abc_777 ,
    Try the following steps:
    1. create a measure and return length of MOBILE_NO field.
    Result_variable= Len(Mobile_No)
    2. create a conditional column - If (Result_variable = 11, 1, 0)
    Flag = IF(values(Result_variable) = 11, 1, 0)
    3. Put a filter on your visual which says Flag = 1 
    use visual level filter - basic filtering and select 1

    this will filter only those numbers which are having 11 digit mobile number.

    If this solution helps you, then please mark it as a solution and hit the thumbs up. Thank you.
    Regards,

    TruptiS

    • abc_777's avatar
      abc_777
      Solution Specialist

      hi truptis ,

       

      I have created new column but when i go to transform and not see my newly created column so i cant go further

       

       

      2. create a conditional column - If (Result_variable = 11, 1, 0)
      Flag = IF(values(Result_variable) = 11, 1, 0)
      3. Put a filter on your visual which says Flag = 1
      use visual level filter - basic filtering and select 1

       

       

      thanks

      • v-kkf-msft's avatar
        v-kkf-msft
        Community Support

        Hi abc_777 ,

         

        The calculated columns are not visible in the Power Query Editor. You can create the custom column in Power Query and then filter for rows with a value of 1.

        CustomColumn = if Text.Length([MOBILE_NO]) = 11 then 1 else 0

         

        Or create a calculated column and then filter.

         

        CalculateColumn = IF ( LEN ( [MOBILE_NO] ) = 11, 1, 0 )

         

        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.

         

         

    • Anonymous's avatar
      Anonymous
      Not applicable

      What an awesome solution ,👍

  • abc_777's avatar
    abc_777
    Solution Specialist

    Hi,

    I have column that doesnt have 11 digit phone number. and i want to pick only field that has 11 digits mobile number
    not empty or only one or two digit in that field.

    what would be the measure.
    I know I have wrong to following measure. please correct me just to pick value which has 11 disig mobile numbers only to show on card

    Mobile Count = IF(hasonevalue('bm_retail_t ssummary'[MOBILE_NO]), DISTINCTCOUNT('bm_retail_t ssummary'[MOBILE_NO]))