I have two differents fields.
Amount$ ( It is a text field from the Account Object)
Priority ( It is a picklist field from the Case Object - you can choose [low, medium, high])
Basically, what I am trying to do is to add a condition to that Priority field based on the Amount field. If the Amount$ field is greater than 10 the value for Priority must be "High" IF NOT, I want the user to pick the value from the list.
Is this possible?
Thank you
Related
Input the Employee no and the Basic Salary of the Employees in an organization ending with the dummy value -999 for Employee no and count the number Employees whose Basic Salary >=5000.
As used here, a dummy value is different than a regular value, and used to select an organization. It may signify test data.
In production software, you don't want to assign meaning to a partial value of a field. As this implies that any changes to the value of a field may break your software unexpectedly. Instead create a new dedicated field (boolean is_test_data).
I have a requirement to create a auto number field for Account number in Account object.
The number will start from 10000 then 10001 upto 20000.After that The number will start from A0000 and will go on till Z0000.After that it will stop creating any new accounts and throw an error "account has reached to its maximum threshold".
Need help on how to achieve this urgently.Thanks.
There may be display format field defined in the auto number field.
Try creating auto number field without display format.
Like this:
Why you want to define the upper limit of the auto number?
I was not able to find setting to set upper limit for the field.
You can use validation rule or trigger.
I have a requirement to have date range filter which can be used for two different date columns of the data source(One at a time either through radio button to choose at which column date range should apply).
Is it possible to achieve this in Google Data studio ?
Workaround:
The general idea is to use let the user set the value of a parameter, which determines the value of a dummy field containing the value of either datetime column. You can then indicate that your table/chart should filter by this datetime field.
Create a parameter in the data source, with the names of the columns you want as possible values. If you want to filter the order_date and completed_date columns, these should be possible options.
Allow the user to set the parameter (e.g. by using a radio button).
Create a calculated field in the data source (e.g. select_date) which, depending on the value of the parameter. For example, create a field user_field:
CASE user_select # this is a parameter
WHEN "order_date" THEN order_date # this is the value of the order_date field
WHEN "completed_date" THEN completed_date # this is the value of the completed_date field
ELSE NULL
END
Set the 'Date Range Dimension' of your chart/table to user_field (the name of the calculated field).
Workaround:
If the table has a primary key, you can make a datablending with itself and in a data set put as a time filter a first field and in the other with the second field.
Example
After that, you should add the metrics and dimensions you need from one of them.
Now when you apply a time filter, it will work on both of them.
I am new to using WebRatio and IFML. I need to build a small web application where at a certain point it is necessary to do some validation based on the timestamp a user provides. This timestamp should be between the range of minimum 24hours from now and maximum 14 days.
I hoped to find a way to adapt the values passed from a Time Utility component, add 24 hours or 14 days to it and then use a Compare Validation Rule to validate what the user has entered.
Can someone please explain how I can accomplish my goal here?
the best way to make this validation is to model in the form two hidden fields containing the minimum and maximum value allowed for the timestamp. In this way you can model on the timestamp field two Compare Validation Rules. Each Compare Validation Rule uses the Value Field property filled in with one of the hidden field. So, at the end, the validations on the field express these conditions
timestamp field greater than minimum timestamp
timestamp field lower than maximum timestamp
To fill the hidden fields with the correct value, given the current timestamp, you can use the Dates Function component. You can download it from the WebRatio Addons
I have 2 fields
Approveuser (lookup to user object)
Approveuserdate (formula field (or) text field)
when i fill the data on Approveuser, i need to diplay automaticlly on this field (Approveuserdate ) date/time.
Please help me
Thank
Your requirement is not clear. Have you already tried something?
When user is creating / editing some record and he selects a value in 2 user lookup fields, you want to set "current date & time" in some other fields?
Try reading about workflow rules in your help & training.
I'd make a workflow similar to this:
Run: every time record is created or edited
Criteria: "User lookup field 1 - not equal to - (leave blank)"
Field to update: "Date/time field 1".
Formula to update it with: NOW()
Remember to activate the workflow.