We have a couple of different number ranges of Student ID's. They are have a User ID (Col. C) which is used as the key for imports into our Student Information System.
I am looking for help filling in the User_ID field (C). If the Student ID (Col. A) starts with a 2, then I need the number from the User ID Field (Col B). If the Student ID (A) number is already the same as the User ID (B) number then insert that into the User_ID field (column C)
Solved! Go to Solution.
Hi @jrmaier ,
try this
Column =
SWITCH(TRUE(),
[Student ID] = [User ID],[Student ID],
LEFT([Student ID],1) = "2", [User ID]
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jrmaier ,
try this
Column =
SWITCH(TRUE(),
[Student ID] = [User ID],[Student ID],
LEFT([Student ID],1) = "2", [User ID]
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
105 | |
73 | |
72 | |
48 | |
47 |
User | Count |
---|---|
160 | |
85 | |
80 | |
68 | |
67 |