How to add a filter in a VEEML story - analytics

I just create a story in VEEML based on a Dataview.
I would like to add a filter that users can use by the "Filters" buttons on top of the new story.

To add a filter based on 1 column of your dataview :
1/ At the bottom of the left menu, click on the database icon to open the datafields options
2/ search the field you want as a filter
3/ Expand that field
4/ In the tab "Filters", check the checkbox
5/ Select the right type of the filter in the the list :
Buttons (multi-values) : It appears as buttons. The user will be able to select 2 or more values.
Buttons (single-value) : It appears as buttons. The user will be able to select only 1 value.
FromTo : use only that type on a field containing an ISO day (format = YYYYMMDD). It appears as 2 calendar fields.
List : the field will be display as a listbox. The user will be able to select 2 values or more and can make a search.
Autocomplete : it appears as a text box. The user can begin to write the value in that textbox and choose the right value he wants to select.
PS : if you have less than 10 distinct values in your field , the buttons could be the best option. Between 10 and 500 distinct values, choose a list. More than 500 distinct values, consider to use an autocomplete field.
6/ Once created, you can specify a specific index in the Filters window for that filter.
For instance, if you create a filter on the field "Year" with the index 10, specify 20 for the field "month" and 30 for the field "Week".
7/ Once done, you can colapse the field and Close the pop-up window.

Related

Single cell selection as input in ag-grid

I am using ag-grid in an angualar project to display a list of input parameters for a user to select. However, so far I am only able to show this list as distinct rows. And every time user has to select one cell, he has to select the entire row. I have not found any single cell selection as user input in ag-grid documentation so far. Any other ideas?
This is how I would like to have my UI look in angular using ag-grid so that the user can select one or more cells per column (Data category) as input
Data Catagory A
Data Catagory B
Data Catagory C
ParamA_1
ParamB_1
ParamC_1
ParamA_2
ParamB_2
ParamC_2
ParamB_3
ParamC_3
ParamB_4
But currently, this is all I have come up with - distinct separate rows per input value for each of the columns :
Data Catagory A
Data Catagory B
Data Catagory C
ParamA_1
ParamB_1
ParamA_2
ParamB_2
ParamB_1
ParamB_2
ParamB_3
ParamB_4
ParamC_1
ParamC_2
ParamC_3
And subsequently, the entire row/rows are selected as input by the user.
Most of the ag-grid documentation talks about row selection or range selection, but I couldnät find anything that talks about multiple cell selection in different rows and columns (not a range of cells)

MS Access Text Box

Access for Microsoft 365.
Form design-->Text box.
I have created a text box but when I save the same text it is displayed in all the individual records.
How do I get a different text for each individual record?
For example:
I have 50 different customer records.
I have a label titled fruit fo all 50 records.
If I write in the text box 'apple' in the first record label all 50 records will have the same text box 'apple'
How do I achieve to have different fruits for each records?
Add that "fruit" field to the table, then bind your textbox to this field - like the other fields you display on the form.
Set the ControlSource property of the textbox to: YourNameOfTheFruitField

React Table cell value corresponding to radio button selected in another cell

I want to populate value in different cells of one column corresponding to value of radio button in another column in table in React.
So , there is
Gender column with entry as Radio button male and female and if male is selected it should auto populate male in another cell of different column and if female it should auto populate female . Also want the counter to total number of rows with males and females.
Any help is appreciated.
Link to code : https://codesandbox.io/s/multiple-sorter-ant-design-demo-forked-nunqd?file=/index.js:0-1123
I need to push value of gender male/female to second column gender selected . Also I need count for total no of male and female selected in table .
Without seeing your code, I cannot be specific, but performing your radio button select action will create an event that you can then use several different ways. If you then use that event to change state, any components that use that state will be updated.
Code Sandbox Example
Perhaps that helps?

Sheets - Dropdown list based on items value

In google sheets from the table with items and its availability, I'd like to create a drop down list in a way to see only available items - so as in example on the drop down list i'd like to see Items A,B and E only, preferably with the corresponding quantity.
put this formula in Z column and create dropdown via data validation from there referencing Z column (then you can hide whole Z column > right click on column > hide)
=FILTER(A2:A; B2:B>0)

SSRS: Grouping column data sorting by A to Z

I've made one grouping with "Name". Now when I retrieving the data from Dataset it shows something like this,
Eadadfadasdas
Masdadadad
Dadasdasdad
Sasdadadasd
Asdffff
I do not want to change the order In Dataset. Is it possible to do it with Expressions in SSRS Report.
I want the result like this,
Asdffff
Dadasdasdad
Eadadfadasdas
Masdadadad
Sasdadadasd
Thanks for your time and help.
In the SSRS table (which I assume you are displaying this data in) YOu need to sort by the Fieldname as follows
Right click the Row Header and click Row Group -> Group Properties
Then select the Sort Tab and set the Column to sort on to be your Column Name as shown
This will display your data in alphabetical order
Click on the Group Properties for 'Name'.
Under the Sorting tab, sort by name A-Z.

Resources