How to check each row click on the specific value in uipath - uipath

I have been working around a SAP table where, I have to find an specific string inside the column (Direction) of an table in SAP UI.
The String value is dynamic and the location also keeps on changing in the column every month so can’t use the click activity,
Is there any way so as to find the string and use the click activity on it
S.No Name Direction
1 Liu North
2 Sam NorthEast
3 Jack NorthWest
4 Daren South
5 Will East
For Eg:
Need to find southWest in the Direction column and double click on it.

Related

Power BI loses sorting between two different chart

I don't know if this is a recurring problem or not, but I have a Power BI solution which has a pie chart and a bar graph. The bar graph is sorted in descending order by a "Value" field. Initially my Power BI file is loading with the below viz. I want to filter the right graph to bring TOP 5 countries name by descending order of their value when a user clicks on pie-chart on left side. The left side is the category of each countries viz. 0,1,2 & 3.
Below happens when I click Category "0". As you can see Power BI gives 9 results (highlighted by dark green)
Same happens for Category "1". Again I see more than 5 values.
Check interactions under format tab. Select the primary visual (in your case pie visual) than click on the filter tab on seconday visual (Bar chart). Default filter is highlight.

Kibana Visualization based on multiple fields

Been searching for a day or two on how to do this, really hoping someone can help...
I want to create a visualization based on two fields.
Fields are:
Name
Activity
Name could have a string value of around 200 different names.
Activity has only two possible string values - 'increase' & 'decrease'.
What I want to do is visualize a count of the amounts of increases & decreases overlapping for each name on a bar chart.
Is this possible?
E.g. Say the name 'Bob_Jones' pops up in my log five times & one has an increase value, but four have a decrease value. How can I visualize that particular name on a bar chart with both the count of increase & decrease values overlapping on the chart?
You have to use Visualize.
On the left, leave Y-Axis as it is. On X-Axis remove everything you already have: you should find yourself in the following situation:
press on Split Bars. Now select Terms in the Aggregation dropdown. In the Field choose Activity on the dropdown (the name of your field).
Now you have to press on the button in the bottom of the screen, called Add sub-buckets. Choose X-Axis, put as Sub Aggregation the value Terms once again, and in the Field choose Name.
Now, if you press the "Play" button (check the pic I uploaded, in the top-right) you should have what you are looking for.

SSRS Indicator by Date Condition

I'm new to SSRS reporting and having some problems with indicators. I am trying to use an indicator to show how long a reservation has been open based on the number of days between the current date and the RequirementDate (which is a field in the dataset).
What I want logically is this:
If number of days is less than 6 months old, show green
If number of days is between 6 months and 8 months, show yellow
If number of days is greater than 8 months, show red
Also, I'm not sure where I would enter this kind of formula, as I am doing this from the Indicator Properties window.
To set these options go into the indicator properties. The easiest way to do this is to right click on the center of the indicator and click Indicator Properties. Then click on Value and States.
Setting the Green, Yellow, and Red ranges is straight forward for your use case. Just fill in the start and end values with the range of days you want. To set the expression you want for the value click on the fx button next to the value field and use an expression like this one to calculate the days between a date and report runtime.
=DateDiff(DateInterval.Day, Max(Fields!RequirementDate.Value), Now())

display objects algorithm

I have array of graphic icons. Every Icon has property level and time. I need to create graphic representation of this icons by some rules.
Every icon with same time should be in same column.
They have to be in columns sorted by levels in groups by ten. For example icon with property level 5 and property level 6 will be in first column in first and second row. Icons with level 11 and 12 with diferent time will be in second column but in 3th and 4th row.
EXAMPLE:
time 1 5 7
group 10-19 icon icon
- icon
group 20-29 icon icon
- icon
group 30-39 iconX
In example above iconX have property level 35 and time property 1.
I have been thinking a lot of time about it but really dont know how to solve it?
Do you have any idea how to solve it ? What should be best practice for this ?
Thank you in advance

Xcode calculations with multi-component picker

I would like to set up a view controller with a 2-component picker where each side contains the same 7 objects. Each object carries the same value for both components. The user would make a selection from each side, enter a value in a provided text field (and optionally tap a "Calculate" button). A calculation would occur using that value and the values from the two picker component objects that were selected and the results would be displayed in a label.
For example, each picker contains the letters a - g. Each letter carries the value of 1 - 7 respectively, for each side of the picker. The user selects "b" and "d" and enters 10. The calculated result of 10 * 2 / 4 = 5 is displayed.
It sounds simple enough. I've found tutorials for doing calculations using values associated with a 1-component picker as well as working with 2-component pickers, but nothing for doing calculations with 2-component pickers. My experience with Xcode is somewhat short. So, feel free to go into detail.

Resources