Auto focus on desired row

Hi All,
is there a way to set-focus the cursor to the desired field with settings or expression/ action?

say: when the row of a column is already filled then the cursor will go to the next desired field skipping others.
thanks

Solved Solved
0 14 1,501
  • UX
1 ACCEPTED SOLUTION

My bad, missed the de-ref period

3X_b_3_b333ded32435896b0689059a6a57999ac0f44aaa.png

View solution in original post

14 REPLIES 14

Not exactly. But there is the auto-advance option (shown in screenshot below) that will move the cursor to the next field once the previous is filled out. If you need to skip certain fields, then I believe if they are dynamically hidden by show_if expressions based on previously filled fields, then the cursor will jump to the next non-hidden field.

set on already thanks much for reply.

Steve
Platinum 4
Platinum 4

Nope.

thanks, Steve/Matt. would be nice to have it.

in relation to my aim on this, can I ask how can I count or know what is already selected even If I do not save the parent record yet?

child table has 3 items in the list of options to select. I want to pre-select the item in the sequence.
my expression wonโ€™t give me the exact sequence.

IFS(
[Latest Timestamp].[Product Name]=โ€œDieselโ€,โ€œPremiumโ€,
[Latest Timestamp].[Product Name]=โ€œPremiumโ€,โ€œUnleadedโ€โ€™,
[Latest Timestamp].[Product Name]=โ€œUnleadedโ€,โ€œDieselโ€โ€™)

None of this makes much sense. Please elaborateโ€ฆa lot.

Hi Marc,

I have a parent table and 3 child tables.
one of the child tables has to be filled with 3 productsโ€™ details i.e Diesel, Premium and Unleaded.
If Diesel Details is already filled in, I need to be able to see the Premium Next after I saved the Diesel Details.

Parent :

Child (Disptick & Sales)
In this view, I should be able to see the Product Name, โ€œDieselโ€.

After Diesel is saved, I need to click the add button to add the next Product Name which needs to be โ€œPremiumโ€

3X_f_e_fea32e57b6ff858cf13b27ca039c4563b2f91c79.png
โ€œPremiumโ€ should be automatically next.

.

I am currently using the IFS expression in my Product Name Column but I canโ€™t track the data of each detail I have already inputted as they are not yet saved in the spreadsheet.

Hope I have elaborate enough. thanks so much.

I donโ€™t know if this is true or not, but lets try this in the Initial Value field for Product Name:

SWITCH( COUNT( [ref-column-to-parent][DipStick & Sales] ) ,
0 , โ€œDieselโ€ ,
1 , โ€œPremiumโ€ ,
2 , โ€œUnleadedโ€ ,
โ€œDieselโ€ )

My bad, missed the de-ref period

3X_b_3_b333ded32435896b0689059a6a57999ac0f44aaa.png

Or:

ANY(
  {โ€œDieselโ€, โ€œPremiumโ€, โ€œUnleadedโ€}
  - [Dipstick & Sales][Product Name]
)

Great idea @Steve. I think youโ€™d have to do it like this though, unless Iโ€™m missing something?

ANY(
  {โ€œDieselโ€, โ€œPremiumโ€, โ€œUnleadedโ€}
  - SELECT( Dipstick & Sales[Product Name] , [parentRef] = [_THISROW].[parentRef] )
)

Yep, good catch!

not sure if I this is the [ref-column to parent] that I need to use here .
I have taken the Parent Key ID but given me this error:

Tried this too:
SWITCH( COUNT( Order Details[Product Name] ) ,
0 , โ€œDieselโ€ ,
1 , โ€œPremiumโ€ ,
2 , โ€œUnleadedโ€ ,
โ€œDieselโ€ )

but it constantly giving me the โ€œDieselโ€

This should be the column in your child table that is a Ref type column pointing at the parent table.

awesome!
this has confused me for quite a while.

thanks

Top Labels in this Space