Forum Discussion

venug's avatar
venug
Helper II
4 years ago

How to capture text inputs

Hi Everyone!

 

I am tryiing to capture text input (sample : 10,20,30,40), & display in dashboard. Could you please suggest to me how can acheive it.

 

thanks in advance. 

 

Regards,

Venu

4 Replies

    • venug's avatar
      venug
      Helper II

      Hi Amit,

      Thanks for your reply. Am working on Migration project & am trying to create dynamic Bins in Power BI, for that want to required user inputs.
      User will provide random numbers & will be provide comma seperated values only. I have done everything, excet user input.

      Anybody please help on this. 

      Thanks in advance.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi venug ,

     

    Sorry for that the information you have provided is not making the problem clear to me.

    If you want to create such a table:

    Please try:

    Table = {10,50,100}
    Index = RANKX('Table',[Value],,ASC) 
    Bin = 
    var _pre=CALCULATE(MAX('Table'[Value]),FILTER('Table',[Index]=EARLIER('Table'[Index])-1))
    return
    IF([Index]=1, "x <"&[Value], _pre&"> x <"&[Value])

     

    Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

     

    Refer to:

    How to Get Your Question Answered Quickly - Microsoft Power BI Community

    How to provide sample data in the Power BI Forum - Microsoft Power BI Community

     

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • venug's avatar
      venug
      Helper II

      Hi Anonymous ,

      Thanks for your response. Bin creation has already done from my side. 
      Just i want to take input from users for "10,50,100". How can acheive it in Power BI, which visual is suitable for it?
      10,50,100 this is user input. user may enter inputs as "93,178, 259", How can i capture it?
      Please provide your guidlines on it.

       

      Regards,

      Venu