How do I populate choices for combo box in powerapps? - combobox

Novice business user here: I am trying to build a schedule separated by date in Microsoft PowerApps for Teams. It would look something like the arrival/departure board at an airport. I need my users to be able to change the status of an event on the schedule basically from "no go" to "go."
For my table, I created a table with columns showing the "no go" and "go" choices and set my default choices to "no go".
For my gallery, I created a nested gallery to separate the dates.
In the gallery, I can populate the fields I created in my table with the "no go" default values, but when I click the dropdown arrow in the combo box, I either get irrelevant choices from a different text column, or I don't get any choices at all.
I have tried making different changes to the "text" and "items" properties. I just don't know how to make the choices I created in the table populate in the combo box dropdown.

Related

How can I load a chart table with a default value in Google Data Studio?

I'm working on a Google Data Studio page which pulls data from a Google Sheet.
The use case of this page is to display the data from a row (from the Google Sheet) based on a selection made from a filter (single select dropdown).
When the Google Data Studio page loads, by default, it loads all the data from the source and displays it on the chart tables, however I would like to display a blank page and the data should load only after a selection is made from the filter dropdown.
There is a simple way to solve this problem. In the drop-down filter settings, in the "default selection" field, you can enter text by default that does not match any of the possibilities of the list items will be displayed in the drop-down list. It might be something like "-".
Thus, defining a default selection that does not exist in the list, it will start by default selected and will not correspond with any existing field, causing no information to be displayed in the table.

How can I change DataStudio default display in charts when I don't select anything in the drop-down control filter?

I create drop-down list(Q1,Q2,Q3) to filter the charts and tables. If I don't select anything in the drop-down list, the charts and tables will automatically show everything(Q1,Q2,Q3) -- how can I change the default value charts and tables that are displaying to Q1's value only?
To be more specific, if I don't select anything in the drop-down list, the charts and tables will show Q1's results; if I select Q2 in the drop-down list, the charts and tables will show Q2's result.
enter image description here
Kindly look for default selection at the filter property panel, as circled in screenshot below.
For example, when I enter "US" as the default selection, the entire dashboard is filtered to US by default. However, the user can still look for other selections if they are interested on other available country.
Do note the data here is dummy data, not the real-world data.
If you're interested to check out the dashboard to see what's the expected output, here is the link

ExtJS: How to group items in combo box, but then show all detail records in display text

Using ExtJS 6.x. I have the following Fiddle:
bind grouped combo box value to detail displayfield
To start with: I would like to show just a single instance of each item in the combo box instead of the multiple instances that show up for each item (thus, instead of "one" and "two" showing up multiple times, I only want these to appear once in the combo box). Is there a way to do the grouping within the viewModel to achieve this?
Assuming then that the combobox items are now grouped accordingly, I then want to show the details in the displayText area, so that for example, if I choose "one" from the combo box, the detail area would show ALL the ids associated with this, those being '1' and '2'.
I solved this, although it feels a bit kludgey:
First, I created an SQL view with the records grouped together (using a unique key of "name + code")... then, I created another SQL view where "name + code" was another field for the original table.
I then used associations in my models to link these two entities together, and thus, used data bindings to link the record selected in the combobox to a grid.

ms-access only show records when selecting certain item from dropdown

I use MS-Access 2013 for this project.
Something I'm unable to find is how I can hide and show certain fields when something happens.
Let's be a little less vague. So, I have a dropdown of 5 items. Oral Exam, Written Exam, Exam on PC, External exam and revision.
All fields are the same for almost every possible selection in the dropdown apart from "exam on PC". Then some additional fields should be filled in, in the form. These are PC_Number amongst other things. The fields are "Yes/No" fields and simple input fields.
Is there a possibility to hide them when "exam on PC" isn't selected in the dropdown and show them when "exam on PC" is selected?
Yes it's very possible and very straightforward.
Lets say your drop down field is Field1 and the field you want to hide or not is Field2
Simply add the following code to the AfterUpdate event
If me.Field1.value<>"Exam on PC" then
me.Field2.visible=false
else
me.Field2.Visible=true
end if

Add a user clickable check box in SSRS report

I am creating a report that for the most part is populated automatically by using variables, parameters with my datasource and dataset. I am trying to add in another column that will have a checkbox, where when the user pulls a report he or she can manually go in and click a check box for various rows. The clicked check box is done by the user and there is no need to send or retrieve data with this check box. Is there a simple solution to where I can add a checkbox for the user to check (and uncheck) various boxes?
SSRS does not deliver this kind of functionality. You would need to have a flag for every displayed row somewhere in your database and add two images to your report, a checked and one unchecked "checkbox" image, show those images on each row (source over expression) based on the flag of the row. Add an action to the image, that executes a storedProc and flags or unflags the row (pass an unambiguous id as parameter).
This is rather dirty, but would work.

Resources