Viewing 15 posts - 136 through 150 (of 3,479 total)
Eirikur,
(Oh wait, before I go too far, all of this mess is in DAX/PowerBI... "Run away, run away!" --King Arthur)
What do you mean by Scopes? ISINSCOPE() kinds of scopes? the...
June 11, 2024 at 2:53 am
There's a Sales fact, but that part is easy, once all the dimension stuff is fixed, so I left it out. Product is related to Sales too. I'm just having...
June 6, 2024 at 4:41 pm
I always think of EXISTS as being useful for testing if one table has ANY related records in another. (So the exact records in the related table aren't important to...
May 9, 2024 at 8:11 pm
At least the cert exams when I did them forced me to learn about and use features I didn't know about. That part was super useful.
May 8, 2024 at 7:12 pm
Think I'm gonna bite the bullet and rebuild with sane field types etc and see what happens. =)
But to answer your question, yes - the goal is to take a...
May 1, 2024 at 5:42 am
Oh I get it! (duh!)
split the recipe into two parts in the CTE.
Part 1 is all the ingredients, weights for everything except the starter
UNION ALL
(For each ingredient in the Starter,...
April 30, 2024 at 4:43 am
Oh I get it! (duh!)
split the recipe into two parts in the CTE.
Part 1 is all the ingredients, weights for everything except the starter
UNION ALL
(For each ingredient in the Starter,...
April 30, 2024 at 4:43 am
So does Poolish (a recipe) ALSO have a starter?
No. Poolish / Starter is what the yeast grows in. Not that it matters that much, but Poolish is 50% flour, 50%...
April 29, 2024 at 8:44 pm
yeah, you know, the database version of a weeping sore.
No, I didn't. gotta try that. Okay, seems to be okay now. Thanks for the tip!
April 23, 2024 at 5:00 pm
(I wonder if they can merge these two posts... Drat!)
I think Jeff is right. If I can express the two or three "Starter" recipes as input into another recipe, then...
April 21, 2024 at 4:51 pm
(Yeah, my browser went a bit nuts)
April 20, 2024 at 4:52 pm
Have you even tried using PowerBI? If that doesn't make you hate Microsoft, nothing will. There are bugs in the software that have been there for like 10 years. My...
April 12, 2024 at 3:54 pm
You have that many points and you can't be bothered to post some consumable data?
You could join on
LEFT(TableA[column],8) = LEFT(TableB[column],8)
April 10, 2024 at 4:22 pm
What's to understand?
INNER JOIN removes records from the result set where no matching values exist on both sides of the join. So t1.Name and t2.Name will never have null values...
March 29, 2024 at 4:21 pm
So use LAG() to return the previous day's value or LEAD() to return the next day's value. Well, assuming that gaps are only a single day. But you know what...
March 29, 2024 at 4:17 pm
Viewing 15 posts - 136 through 150 (of 3,479 total)